Vidyalelo
C Programming · Q205

C Fundamentals

Programming · C Programming · question 205

Q205

What will be the output of the following C code? #include enum class a,b,c ; enum class m; main() printf("%d",sizeof(m));

A.
3
B.
Same as the size of an integer
Answer
C.
3 times the size of an integer
D.
Error

Answer: Option B

Solution

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