I have this code:
#include<stdio.h>
int main()
{
int a=10;
switch(a)
{
case '1':
printf("ONE\n");
break;
case '2':
printf("TWO\n");
break;
defalut:
printf("NONE\n");
}
return 0;
}
The program doesn't print anything, not even NONE. I figured out that default had a typo defalut!
I want to know why this syntax error is not detected by the compiler.
for:,defalut:,if:,void:,do:, andthis:are valid is going to make your programming needless hard to debug. – Hans Z Jul 3 '12 at 16:43-Wallswitch. – insane Jul 3 '12 at 19:01