1.

What type of data is holded by variable u int in the following C code?
#include <stdio.h>
union Example
{
int Nval;
float Fval;
char *Sval;
} e;

A. Will be large enough to hold the smallest of the three types;
B. Will be large enough to hold the all of the three types;
C. Will be large enough to hold the largest of the three types;
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs