Consider the following declarations:
union id{ char color; int size;};struct{ char country; int date; union id id;}flag;
To assign a color to a flag, the correct statement would be
union id{ char color; int size;};struct{ char country; int date; union id id;}flag;Consider the following declarations:
union id{ char color; int size;};struct{ char country; int date; union id id;}flag;To assign a color to a flag, the correct statement would be Correct Answer flag.color = 'W';
2
মোঃ আরিফুল ইসলাম
Feb 20, 2025