MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? int main() { enum {ORANGE = 12, MANGO, BANANA = 11, APPLE}; printf("APPLE = %d n", APPLE); } |
| A. | APPLE= 11 |
| B. | APPLE= 12 |
| C. | APPLE= 23 |
| D. | APPLE= 0 |
| Answer» C. APPLE= 23 | |