VertitimeX Technologies

C Enums.

An enumeration type, is a data type that consists of integral constants.
To define enums, the enum keyword is used.
enum flag {const1, const2, ..., constN};