C Programming - Old Questions

Question Answer Details

10. What will be the size of following union declaration?

union test

{

int x;

char y;

float z;

}

a) 8 bytes    b) 13 bytes    c) 1 byte    d) 4 bytes

1 marks
Asked in 2018-objective

Answer

AI Generated Answer

AI is thinking...