Now type in the following program.
#include <stdio.h>
int main() {
printf("Hello World") ;
return 0;
}
It's something of a tradition to output Hello World as the first program. Now save it by clicking the Save button or File on the menu then save. You can leave the editor open when compiling.
The text editor and the project windows are separate, so after changing the source code in the editor, you must save it before recompiling. It's slightly fiddler compared to newer IDEs like Visual Studio in the C++ and C# tutorials.
On the next page : Learn how to compile the application.


