Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. 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;
  2. A.
    4
    B.
    8
    C.
    12
    D.
    32

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    None.


Be The First To Comment