Here I have written my name in main argument declaration but still this program works and did not give any warning.
#include <stdio.h>
int main(Mr32)
{
printf("why this works?");
return 0;
}
Whenever I write anything in place of mr32 , The code still works. I really don't know why this is happening. As per C programming standard this is wrong, right?
Edit : I have tried -Wall but it does not give any warning.
I think here it should be error, because i am not doing as standard C function definition declaration
In c every function definition must follow this format
return-type function_name ( arg_type arg1, ..., arg_type argN );
This should also appy to main() right ..??
Okay -Wextra shows warning that mr32 is by default int.
Then why is the default type of any argument in main() an int?
#include <stdio.h>gcc does not complain even with-Wall. Only with-Wextrait complains aboutMr32defaulting toint. The question is more about default main arguments: which spec defines that the type of main defaults to int? – Matteo Sep 27 '11 at 9:16gcc -Wextracomplains. But the question is: why a warning and not an error? Why does it default toint? Where and how is this specified? – Matteo Sep 27 '11 at 9:17identifier-listinstead of aparameter-type-list. I'm not sure if the standard explicitly states in normative text that the parameters are then assumed to beint, or whether this just follows from the fact that any variable in C89 is by default an int (that is,auto a;defines an automatic variable that's an int), but there's an example in 3.7.1 which does mention thatintis the default for such function parameters. – Steve Jessop Sep 27 '11 at 9:51