1.

What will be the output of the following C code?
#include <stdio.h>
union U
{
int N;
float F;
};
int main()
{
union U u, uu;
u.N = 200;
printf("%f n", u.F);
}

A. Implementation dependent
B. Compilation Error
C. 200.000000
D. 0.000000
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs