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
Answers were Sorted based on User's Feedback
Answer / aswini
how ur answer is c.can u explain that???
i think its b...
Is This Answer Correct ? | 19 Yes | 1 No |
Answer / nitin.ramola
An enum is a user-defined type consisting of a set of named
constants called enumerators. The colors of the rainbow
would be mapped like this.:
enum rainbowcolors {
red,
orange,
yellow,
green,
blue,
indigo,
violet)
}
Now internally, the compiler will use an int to hold these
and if no values are supplied, red will be 0, orange is 1 etc.
Is This Answer Correct ? | 1 Yes | 0 No |
What is an lvalue?
Explain how can I make sure that my program is the only one accessing a file?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
main is a predefined or user define function if user defined why? if predefined whay?
What is structure padding & expalain wid example what is bit wise structure?
What is assert and when would I use it?
write a program of bubble sort using pointer?
Is this program statement valid? INT = 10.50;
What is return type in c?
How to establish connection with oracle database software from c language?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
What is the difference between printf and scanf in c?