Discussion :: Control Structures
-
What will be the following code's output if choice = 'R'?
switch(choice)
{
case 'R' : printf("RED");
case 'W' : printf("WHITE");
case 'B' : printf("BLUE");
default : printf("ERROR");break;
}
Answer : Option B
Explanation :
As the first option is matching, the cases are evaluated till the break statement is encountered or end of switch statement is encountered.
Be The First To Comment