|
|
Hello World |
|
#include <stdio.h>
/* the main C function */
int main (int argc, char** argv) {
printf("Hello world\n");
return(0);
}
To compile this application using GCC.
cc -o hello_world hello_world.c
-Wall flag to the compilation
cc -Wall -o hello_world hello_world.c
./hello_world