1.

What is the output of this C code? #include int main() { enum {ORANGE = 5, MANGO, BANANA = 4, PEACH}; printf("PEACH = %d n", PEACH); }

A. PEACH = 3
B. PEACH = 4
C. PEACH = 5
D. PEACH = 6
Answer» D. PEACH = 6


Discussion

No Comment Found