MCQOPTIONS
Saved Bookmarks
| 1. |
# include main ( ) { char ch = 'A'; while (ch<='F') { switch(ch) { case 'A': case 'B': case 'C' : case 'D' : ch++; continue; case 'E' : case 'F': ch++; } putchar(ch); } What will be the output of the above program? |
| A. | ABCDEF will be displayed |
| B. | FG will be displayed |
| C. | EFG will be displayed |
| D. | EF will be displayed |
| Answer» C. EFG will be displayed | |