Possible Duplicate:
“int main (vooid)”? How does that work?
main(a,b,c)
{
a=1;
b=2;
c=3;
printf("%d %d %d",a,b,c);
}
How three Integer arguments a
,b
,c
are possible inside main, as we know that the second formal parameter has to be a pointer to a pointer to a character?