The function main() invokes other functions within it.It is the first function to be called when the program starts execution.
? It is the starting function.
? It returns an int value to the environment that called the program.
? Recursive call is allowed for main( ) also.
? It is a user-defined function.