Const function in all c programs: main() function
#include <stdio.h> int main() { puts("program"); return(0); }
1. | Display Hello: output String | ||
2. | Display Hello and your name | ||
3. | Simple string ouput | ||
4. | main function | ||
5. | A for loop inside main function | ||
6. | Program starts with main function |