|
|
| Webcompiler example
This article explains how to compile the classic "Hello World !" example program in C language using Acme Systems WebCompiler, a Web front end to the Cris compiler, and how to run it on the FOX Board
With WebCompiler you can compile simple C programs from the Web with no need to install the Axis SDK.
WebCompiler startup page
[Tag H1 not found]
Compile "Hello World !" example
"Hello World !" is the first example used on every tutorial to introduce any programming language. Its scope is to show that something is working in an easier and faster way. The following is the C language version of "Hello world !":
#include "stdio.h"
int main(void) {
printf("Hello world !\n");
return 0;
}
Compiling steps
Related links
|
|