For what minimum value of x in a 32-bit Linux OS would make the size of s equal to 8 bytes?
struct temp
{
int a : 13;
int b : 8;
int c : x;
}s;
struct temp
{
int a : 13;
int b : 8;
int c : x;
}s;A. 4
B. 8
C. 12
D. 32
Answer: Option C

Join The Discussion