main()
{
enum{red,green,blue=6,white};
pf("%d%d%d%d", red,green,blue,white);
return 0;
}
a)0 1 6 2
b)0 1 6 7
c)Compilation error
d)None of the above
Answer Posted / kalai
c
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Explain the properties of union. What is the size of a union variable
What is the use of function overloading in C?
What is the acronym for ansi?
Can we declare a function inside a function in c?
Can static variables be declared in a header file?
while initialization of array why we use a[][2] why not a[2][]...?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
When is a “switch” statement preferable over an “if” statement?
Where does the name "C" come from, anyway?
What is the size of a union variable?
How is a macro different from a function?
What is formal argument?
Why is c called c?
Is c dynamically typed?
How can I remove the leading spaces from a string?