What is the size of the following Union? Assume that the size of int = 2, size of float 4, size of char = 1
union tag {
int a;
float b;
char c;
};
1
2
2
4
3
1
4
7
5
6
What is the size of the following Union? Assume that the size of int = 2, size of float 4, size of char = 1
union tag {
int a;
float b;
char c;
};