// // This is the standard "HELLO WORLD" sample // // contains the declaration of the "printf" // function. You need to include this file in order // to access library functions. #include // A C program always begin at the "main" function. void main() { // "printf" means "formated printing". // "\n" is the code for "carriage return" printf("Hello World !\n"); }