Some questions on enumerated types in C
Some questions on enumerated types in C
In the following declarations what are the values of Red?
- enum ColourSet {Red, Blue, Green};
- enum PaintSet {Green, Blue, Red};
Answers to these questions.
Back to notes on enums in C.