?
Consider the following declarations:
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;
Answer & Solution
Correct Answer:
Option
A
2
Join the Discussion
Login to post a comment or share your explanation.
Login