Enumeration is basically a way to represent a possible list of number values for a variable in friendly names or symbol forms. For e.g. if you have to represent rainbow colours with 0 to 6 you can always write them more meaningfully as enum rainbow { RED, ORANGE, YELLOW, GREEN, BLUE, INDIGO, VIOLET }; This […]