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 / saiteja
0167
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the description for syntax errors?
What is meant by preprocessor in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Process by which one bit pattern in to another by bit wise operation is?
What is a double c?
Explain what is a 'locale'?
What is ## preprocessor operator in c?
What are qualifiers?
Explain what is the benefit of using #define to declare a constant?
What are Macros? What are its advantages and disadvantages?
What is an expression?
Explain what is the use of a semicolon (;) at the end of every program statement?
How do you determine whether to use a stream function or a low-level function?
Why is C language being considered a middle level language?
What are the two types of functions in c?