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 / niranjan kumar niraj
d)none of the above
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the hardest programming language?
What is the difference between formatted&unformatted i/o functions?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Explain how can I make sure that my program is the only one accessing a file?
Can stdout be forced to print somewhere other than the screen?
What does calloc stand for?
What is bin sh c?
What is signed and unsigned?
What does void main return?
Do string constants represent numerical values?
Whats s or c mean?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
main() { printf("hello"); fork(); }
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
write a program fibonacci series and palindrome program in c