C Programming - Structures, Unions, Enums

6.
Is there easy way to print enumeration values symbolically?
Yes
No
Answer: Option
Explanation:
You can write a function of your own to map an enumeration constant to a string.

7.
By default structure variable will be of auto storage class
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

8.
Is it necessary that the size of all elements in a union should be same?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

9.
Can we have an array of bit fields?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

10.
Will the following declaration work?
typedef struct s
{
    int a;
    float b;
}s;
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.