All c statemtns are written inside main() it is the starting point of execution. To represent start and ent of main() we use curly breces{}.
To display text in output window we use printf()
Example
|
1 2 3 4 5 6 7 |
#include<stdio.h> int main() { printf("Hello Everyone!"); return 0; } </stdio.h> |
Result
|
1 |
Hello Everyone! |