1.

What would be the size of the following union declaration? (Assuming size of double = 8, size of int = 4, size of char = 1)
#include <stdio.h>
union Test
{
double n1;
int n2[10];
char n;
}t;

A. 80
B. 8
C. 4
D. 40
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs