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 strcpy() function?
What is meant by int main ()?
how to print 212 as Twohundreds twelve plz provide me ans soon
why the execution starts from main function
triangle number finding program...
Why we use int main and void main?
How to delete a node from linked list w/o using collectons?
What is the memory allocated by the following definition ? int (*x)();
What is the difference between struct and typedef struct in c?
how to use virual function in real time example
can we have joblib in a proc ?
What is adt in c programming?