I know that the C++ standard says that return 0 is inserted at the end of main() if no return statement is given; however, I often see recently-written, standard-conforming C++ code that explicitly returns 0 at the end of main(). For what reasons would somebody want to explicitly return 0 if it's automatically done by the compiler?
|
|
|||
| show 5 more comments |
|
Because it just looks weird to not "return" something from a function having a non-void return type (even if the standard says it's not strictly necessary). |
|||
|
By being explicit you are explicitly showing your intent. By relying on something implicit you could have 2 cases: 1) You intended it, 2) You forgot it. |
|||||||||||
|
|
Misunderstanding. There's simply no reason to, and if someone doesn't know that they'll add |
|||
|
|
|
|||||||||||||||||||||
|
|
Because some people don't know. Not necessarily the people who wrote that code (although that's also possible), but some people out there. Explicitly writing Also, as a convention it makes the language more uniform, which aesthetically is important to at least me. |
|||
|
|
|
Just because your code complies with the standard, who says your code is going to be run through a compliant compiler? Believe it or not, people do use compilers besides just recent versions of GCC and Visual C++. And of course there's the explicit intent thing that everyone else has mentioned. |
|||||||||||||||||
|
|
Because this is how they did it 30 years ago. It is more of a convention IMO. |
|||||||||
|
|
I often do it because I often compile code for straight C, so I either type it in out of habit or because the snippet I created Then again, there are times when I won't bother typing it in (maybe I realized I didn't need it) or I may have used a different snippet. |
|||
|
|
return 0;on principle unless non-zero is a valid return value. It makes me feel like a rebel. – Dennis Zickefoose Apr 6 '10 at 0:58