Examveda

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;

A. 4

B. 8

C. 12

D. 32

Answer: Option C


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union