1.

What will be the output of the following C code?
#include <stdio.h>
union U
{
int m;
char Str;
}s = {.Str = 99};
int main()
{
printf("%d n", s.Str);
}

A. Compilation Error
B. Depends on compiler
C. Garbage value
D. 99
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs