MCQOPTIONS
Saved Bookmarks
| 1. |
The output of the following code segment will be char x= 'B'; switch(x) { case 'A': printf("a"); case 'B': printf("b"); default: printf("C"); } |
| A. | B |
| B. | bc |
| C. | C |
| D. | bC |
| Answer» E. | |