Vidyalelo
C Programming · Q75

C Fundamentals

Programming · C Programming · question 75

Q75

What will be the output of the following C code? #include enum hello a,b=99,c,d=-1 ; main() enum hello m; printf("%d %d %d %d ",a,b,c,d);

A.
1
99
100
-1
B.
Error
C.
0
99
100
-1
Answer
D.
0
1
2
3

Answer: Option C

Solution

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