vote up 5 vote down star
2

Does it matter which way I declare my C++ programs?

flag

7 Answers

vote up 21 vote down check

The difference is one is the correct way to define main, and the other is not.

And, Yes it does matter.

int main(int argc, char** argv)

or

int main()

is the proper definition of your main per the C++ spec.

void main(int argc, char** argv)

is not and was, IIRC, a pervesity that came with Microsofts C++ compiler.

http://www.parashift.com/c++-faq-lite/newbie.html#faq-29.3

link|flag
int main(void) is also proper – Trent Mar 12 at 0:02
1  
Actually, while that is okay, I think int main() is preferred to int main(void) – Alan Mar 12 at 0:09
They are the minimum requirement for arguments (and it's "char *argv[]", not "char **argv"). Implementations are explicitly allowed to provide more forms. The int return type, however, is non-negotiable as you state. – paxdiablo Oct 28 at 2:57
vote up 4 vote down

For C++, only int is allowed. For C, C99 says only int is allowed. The prior standard allowed for a void return.

In short, always int.

link|flag
Returning an int is also required for C89. – Dana the Sane Mar 12 at 0:11
Actually, C89 is vague depending on how you read it. Interesting reading here: homepages.tesco.net/J.deBoynePollard/FGA/… – Joe Mar 12 at 0:30
vote up 4 vote down

You should use int main. Both the C and C++ standards specify that main should return a value.

link|flag
vote up -1 vote down

If you're going by the spec, then you should always declare main as an int.

In reality, though, most compilers will let you get away with either one, so the real difference is if you want / need to return a value to the shell.

link|flag
You should always try to do things "by the spec" unless there is a compelling reason not to. Granted, a lot of implementations allow void main, and other extensions. This does not mean you should rely on implementation specific extensions. In embedded applications, with no shell, void main is ok. – Trent Mar 12 at 0:09
I'm going to go ahead and agree with all of that. For a while, I got into the habit of using void vs int as a kind of pesudo-comment about whether I was expecting to return a value, but now I just always use int. – Electrons_Ahoy Mar 12 at 0:17
Why is there value in doing the wrong thing (which happens to work in some cases), when the right thing is more work? – Tom Mar 12 at 3:31
@Tom: because... the right thing was more work? I'm not sure that sentence parses correctly. – Electrons_Ahoy Mar 12 at 5:52
@Ahoy - I missed one crucial word there... meant to say "...when the right thing is no more work" – Tom Mar 12 at 12:30
show 1 more comment
vote up -6 vote down

It does not matter as long as the compiler you are using for all platforms you ever plan on targeting supports what you are doing. You can argue that you should follow the standard for standards sake, but in the end all that matters is your program runs when you need it to.

link|flag
Or you could follow standards for the sake of your program still running next month, when you upgrade to a newer compiler – jalf Mar 12 at 0:39
It doesn't take any extra effort to do the right thing in this case. There's no value at all to using void main. – Tom Mar 12 at 3:32
vote up 1 vote down

The point is, C programs (and C++ the same) always (should?) return a success value or error code, so they should be declared that way.

link|flag
vote up 0 vote down

A long time ago I found this page (void main(void)) which contained many reasons outside of the "the standard says it is not valid" argument. On particular operating systems/architectures it could cause the stack to become corrupted and or other nasty things to happen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.