Home » C Programming » Data Types » Question
  1. In the following C code, the union size is decided by?
    union temp
    {
    char ch;
    int n;
    float f;
    };
    1. float
    2. int
    3. both float and int
    4. char
    5. None of these
Correct Option: C

both float and int



Your comments will be displayed only after manual approval.