

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> int main() { enum {Blue = 4, Green, Yellow = 5, Red}; printf("Red = %d n", Red); } |
A. | Red = 4 |
B. | Red = 5 |
C. | Red = 6 |
D. | All of above |
E. | None of these |
Answer» D. All of above | |