I hope that this will be very interesting and meaningful for "C" programmers.
Lets us start with simple question.
----------------------------------------------------------------------------------------------------------------------------------------------------
#include<stdio.h>
int main()
{
int a=10;
switch(a)
{
case '1':
printf("ONE\n");
break;
case '2':
printf("TWO\n");
break;
defa1ut:
printf("NONE\n");
}
return 0;
}If you expect "NONE" is the output, u are wrong. Wats the output & How?












