Why is main() a user defined function ?
When will I use void main() and int main() ?
|
|
Here is what the C standard says (ISO C 9899:1999):
The text in the C++ standard is more or less identical. Please note that "Program startup" in the text is a subclause to hosted environment. This means:
|
|||||||||||||||||||||
|
|
Lundin is correct about C, but in C++ the wording is sufficiently distinct to make a difference:
The first bolded passage does not override or cancel out the second.
|
|||||||||||||
|
|
The return type for |
|||
|
|
|
There are 3 situations:
In 1. there need not be a function named In 2. a program starts executing at a function named In 3. a program starts executing at a function named |
|||||||||||||
|
|
Originally in the C language there was no such type as void and therefore the function had to return int. In practice, returning int allows you to run another process from your process (using fork and exec) and if you can get the return result from that process you will know whether it worked or not. |
|||
|
|
|
Many compilers don't support void main(), therefore you should always use int main(). |
|||||||
|