Home / Programming MCQs / C Programming MCQs / Question

A

Akash Lawaniya • 9.48K Points
Tutor III

Q. In the following C code, the union size is decided by?

Code:
union temp
    {
        char ch;
        int n;
        float f;
    };
(A) float
(B) int
(C) both float and int
(D) char

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.