People use void main() /*empty braces()*/
I have been taught to write void main(void)
Any ideas what the difference is?
|
People use I have been taught to write Any ideas what the difference is? |
||||
| show 20 more comments |
|
I'm not sure what the standards are nowadays, but in traditional ANSI C, using empty braces idicates that the function can take any number of arguments. Declaring a If you want to be strict though, it's probably best to define the |
|||||||||||||||||||||
|
|
From the C99 standard:
Cf: When main is defined without parameters, will argc and argv still be present on the stack? EDIT: I fixed the link. Thanks Shin. |
|||||
|
|
These prototypes of main() are both non-standard. Precision on that question can be found on the comp.lang.c faq : http://c-faq.com/decl/main.html EDIT: changed "wrong" to "non-standard" as the norm allows implementation-defined prototypes. |
|||||||||||||
|
|
There is no difference but usually main should return int. Some compilers will give you a warning (at least the GNU compiler - gcc):
As mentioned the prototype of main is (according to standard):
|
|||||||
|
|
Actually empty braces in C represents void. Thats why you may or may not use this keyword in |
|||
|
|
|
The As I can see in codes, the most used prototype for "normal" environments (no embedded device or other "strange" environments where main can be called differently) is edit Just to be kind to skeptical persons; on the an environment where the main function is called, with two arguments, the following
says no error for A, while for B says On other evironments (I can't do practical tests now), In the OP case, considerering the "normal" enviroment (O.S. like GNU/Linux e.g.), where two args are passed to the main, and a return value is expected, the edit One more note, always for skeptical person. As already proved, B raises an error, since I've said that it is
If we used So, edit More likely the call is like
on many systems, but this does not change the previous speech. |
|||||||||||||||
|
mainis (usually)int main(int argc, char* argv[]);-) – T.J. Crowder Jul 1 '10 at 9:17mainshould returnint. – IVlad Jul 1 '10 at 9:17void main(void). For example, HiTech's C compiler. After all, where is the return value going to go? – detly Jul 1 '10 at 9:19