Vidyalelo
C Programming · Q146

C Fundamentals

Programming · C Programming · question 146

Q146

What will be the output of the following C code if the code is executed on a 32 bit platform? #include enum India c = 0, d = 10, h = 20, s = 3 a; int main() a = c; printf("Size of enum variable = %d bytes", sizeof(a)); return 0;

A.
Error
B.
Size of enum variable = 2 bytes
C.
Size of enum variable = 4 bytes
Answer
D.
Size of enum variables = 8 bytes

Answer: Option C

Solution

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