C simple program


Tips for New Programmers 1: About Simple Program
1. Include following header file in order to print  simply “Hello”
       #include
2. Don’t forgot to write main function.
3. Separate line for each header file.

4. Each Statement is terminated by Semicolon (;).
5. Main function starts with opening parenthesis (” { “) and ends with closing
parenthesis (” } “) .
6. Simple Hello Word Program:


#include
main()
{
printf("Hello World");
}