In the following code:
int i = 0;
switch(i)
{
case 0:
cout << "In 0" << endl;
i = 1;
break;
case 1:
cout << "In 1" << endl;
break;
}
What will happen? Will it invoke undefined behavior?
|
In the following code:
What will happen? Will it invoke undefined behavior? |
|||
|
No undefined behavior. But the value of The In fact, it's sometimes useful to do:
And changing the control variable inside a |
||||
|
|
|
There's no issue here. The expression in the switch condition is evaluated when it is reached. It doesn't have to be a variable and if it is the variable can be subsequently modified without any effect on the behaviour of the switch statement. |
|||
|
|
|
You break out of this switch statement after you set it to 1 which is defined behavior so it will never enter |
|||||||
|
|
Your output would be : "In 0" even if you assign the value i = 1 it wont be reflected because switch does not operate in iteration, it is one time selection as break would make it go out of the switch statement. |
|||
|
|
case 1to be executed since you changedito 1, that won't happen either since execution will reach the end of theswitchstatement once thebreakat the end ofcase 0is encountered. – Praetorian Nov 30 '11 at 22:15