Examveda
Examveda

In the following C code, the union size is decided by?
union temp
{
    char a;
    int b;
    float c;
};

A. char

B. int

C. float

D. both int and float

Answer: Option D


This Question Belongs to C Program >> Operators And Expressions

Join The Discussion

Related Questions on Operators and Expressions