Computer Science, asked by rajrai1318, 4 hours ago

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 pannurekha166
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