Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What would be the size of the following union declaration?

    union uTemp
    {
    double a;
    int b[10];
    char c;
    }u;
    (Assuming size of double = 8, size of int = 4, size of char = 1)
  2. A.
    4
    B.
    8
    C.
    40
    D.
    80

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    None.


Be The First To Comment