#include<stdio.h>
int main() {
int a = 1;
switch (a) {
int b = 20;
case 1:
{
printf("b is %d\n", b);
break;
}
default:
{
printf("b is %d\n", b);
break;
}
}
return 0;
}
|
|
|
||||||||||||
|
|
|
Because the switch statement jumps to a relevant case, so the line |
||||||||||
|
|
|
|
|||
|
|
|
The code
is actually doing two things:
and
The compiler sets up a variable called b when it compiles the program. This is an Before that point, it is unknown what value the variable has. This would not be true for a global variable, or a |
||||||||||||
|
|
|
Remember that |
|||
|
|
|
|
Inside of a switch is a hidden
|
||||
|
|
|
Gcc throws a warning saying that b is uninitialized when you call the printf() you have to move "int b = 20" before the switch() |
||
|
|
|
|
It doesn't output "b = 20" because b is set inside the switch statement and this instruction is never executed. What you want is this:
|
||
|
|
|
|
Your compiler should warn you about this. The initialization of 'b' is at the beginning of the switch statement, where it will never be executed -- execution will always flow directly from the switch statement header to the matching case label. |
||||||
|
|
|
The line
Is not executed before the switch is entered. You would have to move it above the switch statement to get 20 output. |
||
|
|
