An Enum Type Is A Distinct Type That Declares A Set of Named Constants.
[EXAMPLE: THE EXAMPLE
ENUM Color
{
RED,
Green,
Blue
}
Declares an enum type named color with members red, green, and blue. End
EXAMPLE]