

MCQOPTIONS
Saved Bookmarks
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 | |