MCQOPTIONS
Saved Bookmarks
| 1. |
Which member of the union will be active after REF LINE in the following C code?#include <stdio.h> union test { int n; float fl; char ch; }; union test t = {11,12.25, N }; //REF LINE |
| A. | n |
| B. | fl |
| C. | ch |
| D. | Such declaration are illegal |
| E. | None of these |
| Answer» B. fl | |