Why do we need to use int main and not void main in C++?
|
|
|
The short answer, is because the C++ standard requires As you probably know, the return value from the |
|||||||
|
|
Most Operating Systems report back to the user, or the calling process, if an application was successful or not. This is especially useful in scripting, where the script can conditionally branch (if-then) on the results of a program. Something along the lines of:
This result status is done via the return value of main. While some compilers allow for void main, for the sake of consistency and simplicity, the ANSI standard requires one single prototype of main:
Because in C, arguments are cleaned up by the caller, the author of main can neglect to declare or process the arguments argc & argv. However, if the setup-routines that call main expect an int return value, and instead don't find one, behavior can undefined. Short answer:
|
||||
|
|
|
Please check this article at C++ FAQ Lite, and this article at FAQ Cprogramming. |
||||
|
|
|
As in C, because the process will give the OS an exit code. You can either use
or
This is at least in C89 IIRC. |
|||
|
|
|
Because int is the returncode a program can return to the OS. You can query this value to check if operation has been succesfull. This was extremely helpfull when using commandline scripts. |
|||
|
|
From Wikipedia: The value returned from the main function becomes the exit status of the process, though the C standard only ascribes specific meaning to two values: EXIT_SUCCESS (traditionally zero) and EXIT_FAILURE. The meaning of other possible return values is implementation-defined. |
|||
|
|
|
Perhaps because it makes sense to cleanly exit with a status code from the main() method. In java, we have to emulate this using System.exit() which is not all that graceful. |
|||
|
|