vote up 9 vote down star
3

What way is the most efficient and why? int main()? void main()? return 1? return 0?

flag

This question is both broad and vague. First of all, which language? C and C++ are two different languages with different standards. Secondly, which OS? Linux, Windows, OS X? Downvoted. – Onorio Catenacci Oct 15 '08 at 12:57
broad yes. Vague no. Lots of useful answers below. – Martin York Oct 15 '08 at 16:09
I still think it's fairly vague too. Define "most efficient" for me. Efficient in what sense? In the sense of taking up less memory? In the sense of running faster? I can see the useful answers but I still think the question is phrased pretty poorly. – Onorio Catenacci Oct 16 '08 at 12:51

10 Answers

vote up 41 vote down check

the return value for main should indicate how the program exited. Normal exit is generally represented by a 0 return value from main. Abnormal termination is usually signalled by a non-zero return but there is no standard for how non-zero codes are interpreted. Also as noted by others, void main() is explicitly prohibited by the C++ standard and shouldn't be used. The valid C++ main signatures are:

int main()

and

int main(int argc, char* argv[])

although many will also accept

int main(int argc, char** argv)

It's also worth noting that in C++, int main() can be left without a return value at which point it defaults to returning 0. This is also true with a C99 program. Whether return 0 should be omitted or not is open to debate. The range of valid C program main signatures is much greater.

Also, efficiency is not an issue with the main function. It can only be entered and left once (marking program start and termination) according to the C++ standard. For C, the case is different and re-entering main() is allowed, but should probably be avoided.

link|flag
main CAN be entered/left multiple times, but that program probably wouldn't win any design awards ;) – korona Oct 15 '08 at 12:38
C99 also has the C++ mis-feature that reaching the end of the main() function is equivalent to returning 0 -- if main() is defined to return a type compatible with int (section 5.1.2.2.3). – Jonathan Leffler Oct 15 '08 at 12:43
1  
stdlib.h provides EXIT_SUCCESS and EXIT_FAILURE for this purpose – Clay Oct 15 '08 at 13:13
1  
0 and non-zero are correct but entirely meaningless to someone reading your code. This question is proof that people don't know what valid/invalid codes are. EXIT_SUCCESS/EXIT_FAILURE are much more clear. – JaredPar Oct 15 '08 at 16:32
1  
@workmad3, notice this defect report though about using main for GCC: gcc.gnu.org/bugzilla/show_bug.cgi?id=41431 . Also notice the following for allowed definitions of main: groups.google.com/group/comp.std.c++/… – Johannes Schaub - litb Nov 27 at 16:08
show 6 more comments
vote up -1 vote down

what will be the output ...if we write

RETURN 1

in C programming.....I mean what its mean...

link|flag
vote up -3 vote down

main() alwayz returns int bet...

try this in linux machine

int main() {

return 1;

}

the question wer did 1 go ??

ans: to shell

in shell type echo $? you can see 1.

Now change the code

void main() {

}

now type echo $? in shell you can see an integer!!!!!!!!

link|flag
vote up 6 vote down

The accepted answer appears to be targetted for C++, so I thought I'd add an answer that pertains to C, and this differs in a few ways.

ISO/IEC 9899:1989 (C90):

main should be declared as either:

int main(void)
int main(int argc, char **argv)

Or equivalent. For example, int main(int argc, char *argv[]) is equivalent to the second one. Further, the int return type can be omitted as it is a default.

If an implementation permits it, main can be declared in other ways, but this makes the program implementation defined, and no longer strictly conforming.

The standard defines 3 values for returning that are strictly conforming (that is, does not rely on implementation defined behaviour): 0 and EXIT_SUCCESS for a successful termination, and EXIT_FAILURE for an unsuccessful termination. Any other values are non-standard and implementation defined. main must have an explicit return statement at the end to avoid undefined behaviour.

Finally, there is nothing wrong from a standards point of view with calling main() from a program.

ISO/IEC 9899:1999 (C99):

For C99, everything is the same as above except:

  • The int return type may not be omitted.
  • You may omit the return statement from main. If you do, and main finished, there is an implicit return 0.
link|flag
vote up 1 vote down

Keep in mind that,even though you're returning an int, some OSes (Windows) truncate the returned value to a single byte (0-255).

link|flag
Unix does the same, as do most other operating systems probably. I know VMS does such incredible weird things with it that returning anything other than EXIT_SUCCESS or EXIT_FAILURE is asking for trouble. – Leon Timmermans Oct 16 '08 at 16:34
vote up 0 vote down

I was under the impression that standard specifies that main doesn't need a return value as a successful return was OS based (zero in one could be either a success or a failure in another), therefore the absence of return was a cue for the compiler to insert the successful return itself.

However I usually return 0.

link|flag
vote up 11 vote down

I believe that main() should return either EXIT_SUCCESS or EXIT_FAILURE. They are defined in stdlib.h

link|flag
gnu.org/software/libc/… – dmityugov Oct 15 '08 at 13:28
2  
EXIT_SUCCESS and EXIT_FAILURE are standard. Have been since 1989. – Michael Burr Oct 15 '08 at 13:30
0 is also standard. – Chris Young Oct 16 '08 at 14:46
vote up 5 vote down

The standard says main should return an int. void is not supposed to work. Take a look at this question, too.

link|flag
vote up 0 vote down

This basically depends on your execution environment (the OS). C implies that it will be run by a UNIX like OS which expects the program to return a (small? 1 Byte? can't remember) integer to indicate success / failure.

You should probably just use int main(int argc, char** argv).

link|flag
vote up 10 vote down

Return 0 on success and non-zero for error. This is the standard used by UNIX and DOS scripting to find out what happened with your program.

link|flag

Your Answer

Get an OpenID
or

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