Vidyalelo
C Programming · Q175

Structure and Union

Programming · C Programming · question 175

Q175

What would be the size of the following union declaration? (Assuming size of double = 8, size of int = 4, size of char = 1) #include union uTemp double a; int b[10]; char c; u;

A.
4
B.
8
C.
40
Answer
D.
80

Answer: Option C

Solution

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