(Choose 1 answer)
}
4
What is the output of the following code?
int choice = 6;
switch(choice) {
case 2:
printf("Case 2");
case 4:
printf("Case 4");
case 6:
printf("Case 6 ");
case 7:
printf("Case 7");
case 9:
printf("Case 9");
default:
printf("The other cases!");
A. Error at Compiling time
B. Case 6 Case 7 Case 9 The other cases
C. Case 6
D. The other cases