I recently had to type in a small C test program and, in the process, I made a spelling mistake in the main function by accidentally using vooid instead of void.
And yet it still worked.
Reducing it down to its smallest complete version, I ended up with:
int main (vooid) {
return 42;
}
This does indeed compile (gcc -Wall -o myprog myprog.c) and, when run, it returns 42.
How exactly is this valid code?
Here's a transcript cut and pasted from my bash shell to show what I'm doing:
pax$ cat qq.c
int main (vooid) {
return 42;
}
pax$ rm qq ; gcc -Wall -o qq qq.c ; ./qq
pax$ echo $?
42

intparameter, you invoke Undefined Behaviour. Anything can happen :) – pmg Feb 13 '11 at 23:40mainfrom the standard two canonical ones. For portability, you should use one of those two but I don't think UB applies here. – paxdiablo Feb 14 '11 at 0:50mainmust have one of the 2 canonical forms (2.1.2.2). But you're right @pax, in a free-standing environment, the identifiermainis in no way special: if used as a function it can be of any type and have any number of parameters of any type. – pmg Feb 14 '11 at 19:08int main (int argc, char *argv[], char *envp[]);to be conforming). – paxdiablo Feb 14 '11 at 23:27