Q171
What will be the output of the following C code? #include int main() enum ORANGE = 5, MANGO, BANANA = 4, PEACH; printf("PEACH = %d ", PEACH);
A.
PEACH = 3
B.
PEACH = 4
C.
PEACH = 5
AnswerD.
PEACH = 6
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board