the size of the following union where an int occupies 2 bytes of memory is union demo float x; int y; char z[10];};
Option..
8 byte
4 byte
10 byte
18 byte
Answers
Answered by
0
Answer:
The right option is (c)-10 byte
Explanation:
Step by Step Explanation:
Here:
union demo
{ float x;
int y;
char z[10];};
#SPJ2
Similar questions