After reading all answer and some more research i get few things.
Case statements are only 'labels'
In c according to spec
§6.8.1 Labeled Statements:
labeled-statement:
identifier : statement
case constant-expression : statement
default : statement
In c there is no any clause that allows for a "labeled declaration". It's just not part of the language.
So
case 1: int x=10;
printf(" x is %d",x);
break;
so this will not compile see http://codepad.org/YiyLQTYw
gcc is giving error
label can only be a part of statement and declaration is not a statement
even
case 1: int x;
x=10;
printf(" x is %d",x);
break;
this is also not compile see http://codepad.org/BXnRD3bu
here also i am getting same error.
In C++ according to spec
labeled-declaration is allowed but labeled -initialization is not allowed.
see this
http://codepad.org/ZmQ0IyDG
Solution to such condition is two
1> Either use new scope using {}
case 1:
{
int x=10;
printf(" x is %d",x);
}
break;
2> or use dummy statement with label
case 1: ;
int x=10;
printf(" x is %d",x);
break;
3> declare variable before switch() and initilize it with different values in case statement if it fullfil your requirement
main()
{
int x; // declare before
switch(a)
{
case 1: x=10;
break;
case 2: x=20;
break;
}
}
some more things with switch statement
newer writes any statements in switch which are not part of any label. because they will never execuated .
switch(a)
{
printf("This will never print"); // this will never executed
case 1:
printf(" 1");
break;
default :
break;
}
see this http://codepad.org/PA1quYX3