int main() vs void main() in C

madU picture madU · Feb 20, 2012 · Viewed 133.3k times · Source

In C, I know that int main() returns an int where void main() does not. Other than that, is there a difference between them? Is the first better than the second?

Answer

detly picture detly · Feb 20, 2012

The overwhelming majority of the time, one of int main(void) or int main(int argc, char* argv[]) is what you need to use. In particular, if you're writing a program that's going to be compiled by any major compiler for running on a personal computer, with the full set of the C standard libraries, then you almost certainly need to be returning an int from main.

(I would also avoid using an empty argument list, see "Why don't we use (void) in main?")

The C99 standard does allow for other implementation-defined signatures, and you can use these if you've read the manual for your compiler and it says you can.

(5.1.2.2.1) It shall be defined with a return type of int and with no parameters ... or with two parameters ... or in some other implementation-defined manner

Personally I would avoid them even if they are allowed (if possible), because it's one more thing to worry about if you ever need to port to another system.

See the comments below "Why don't we use (void) in main?" for some interesting discussion on this.