Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. For union

        union temp
        {
            char a;
            int b;
            float c;
        };
    The size is decided by:
  2. A.
    char
    B.
    int
    C.
    float
    D.
    Both (b) and (c)

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment