MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? #include int main() { union demo { int x; int y; }; union demo a = 100; printf("%d %d",a.x,a.y); } |
| A. | 100 0 |
| B. | 100 100 |
| C. | 0 0 |
| D. | Compilation Error |
| Answer» E. | |