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
What are the different types of constants?
What are the disadvantages of c language?
What is the function of multilevel pointer in c?
Is swift based on c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is volatile variable how do you declare it?
Write a program to swap two numbers without using the third variable?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the purpose of scanf() and printf() functions?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What are register variables? What are the advantage of using register variables?
What is a char c?
What is the difference between c &c++?
What is the use of the function in c?