What is the purpose of main () function?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Works at Facebook, Lives in Menlo Park, CA
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 Program execution ...
2023-05-11 14:09:51
评论(499)
Helpful(122)
Helpful
Helpful(2)

Noah Garcia
QuesHub.com delivers expert answers and knowledge to you.
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 Program execution ...