MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code (Assuming size of int and float is 4)?#include <stdio.h> union { int Nval; float Fval; } U; void main() { printf("%d", sizeof(U)); } |
| A. | 32 |
| B. | 16 |
| C. | 8 |
| D. | 4 |
| E. | None of these |
| Answer» E. None of these | |