Vidyalelo
C Programming · Q171

C Fundamentals

Programming · C Programming · question 171

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
Answer
D.
PEACH = 6

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board