Home » C Programming » Bit Fields » Question
  1. For what minimum value of x in a 32-bit Linux OS would make the size of e equal to 8 bytes?
    struct Example
    {
    int n : 13;
    int m : 8;
    int s : n;
    }e;
    1. 32
    2. 12
    3. 8
    4. 4
    5. None of these
Correct Option: B

12



Your comments will be displayed only after manual approval.