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”); case ‘C’: printf(“c”); } |
| A. | B |
| B. | b |
| C. | BC |
| D. | bc |
| Answer» E. | |