#include <stdio.h> | adds information about the standard library in your program |
main() | indicates that this is the main routine which is called by the operating system when you run a program. |
printf("Hello, World\n"); | calls the printf routine to print the text in quotes. The \n generates a newline so that the cursor ends up at the beginning of the next line after printing the text. |
{ } | a block of code that comprises the main() routine. |