6. 

Is there easy way to print enumeration values symbolically?

A. Yes
B. No

7. 

By default structure variable will be of auto storage class

A. Yes
B. No

8. 

Is it necessary that the size of all elements in a union should be same?

A. Yes
B. No

9. 

Can we have an array of bit fields?

A. Yes
B. No

10. 

Will the following declaration work?

typedef struct s
{
    int a;
    float b;
}s;

A. Yes
B. No