C is a general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. (read all...)
This is the “Hello world !” source code example.
#include <stdio.h> int main(void) { printf("Hello world !\n"); return 0; }
Save it with in hello.c file then install the GCC compiler.
To install the GCC compiler on your FoxG20 make sure your FoxG20 is connected to internet then type:
debarm:~# apt-get update debarm:~# apt-get install gcc
debarm:~# gcc hello.c -o hello debarm:~# ./hello Hello world !