MCQOPTIONS
Saved Bookmarks
| 1. |
In the following C code, the union size is decided by?union temp { char ch; int n; float f; }; |
| A. | float |
| B. | int |
| C. | both float and int |
| D. | char |
| E. | None of these |
| Answer» D. char | |