/* These are comment lines. 1. Save this program from your browser into your directory (click: File, Save As, give name: Hello.c) 2. Compile this program with: cc -S Hello.c and look at the output file "Hello.s" (Computer instruction nmemonics) 3. Then compile the program with: cc -o Hello Hello.c You will get the runnable object file "Hello" 3. Then run it with: Hello */ void main(int argc, char* arg[]) /* The main method definition */ { printf("Hello World!\n"); }