Write few Lines about main() in C?
https://www.computersprofessor.com/2016/05/write-few-lines-about-main-in-c.html?m=0
Main is a user defined function. It is the staring
address of every program. C permits different forms of main() statements. following forms
are allowed.
|
®
The empty pair of parentheses indicates that the function has no arguments.
|
®
The keyword void means that the function does not return any information to the operating system.
|
®
Int means that the function returns an integer value to the operating system.
When int is specified,
the last statement in the program must be return.
|