Some questions on enumerated types in C

In the following declarations what are the values of Red?
  1. enum ColourSet {Red, Blue, Green};

  2. enum PaintSet {Green, Blue, Red};

    Answers to these questions.


    Back to notes on enums in C.