Donwload
~> gcc -c hello_world hello_world.c
~> ./hello_world
~> Hello World
/* Include files */ #include "stdio.h" /* Main function */ int main () { /* Screen output */ printf("Hello world\n"); return 0; }