# Enum Is Used To Create A Certain Amount Of Related Constants enum my_enum { MYCONST1, MYCONST2 = 10, }
Here is what the above code is Doing:
1. It creates an enum named my_enum.
2. It creates two constants, MYCONST1 and MYCONST2.
3. MYCONST1 is assigned the value 0.
4. MYCONST2 is assigned the value 10.