

MCQOPTIONS
Saved Bookmarks
1. |
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;} |
A. | ED |
B. | ED WHITE BLUE ERROR |
C. | ED ERROR |
D. | ED WHITE BLUE |
E. | RROR |
Answer» C. ED ERROR | |