1//enum <name of enumeration> { <possible choices separated by commas> }
2enum type_of_fuel{ Gasolina, Gasoleo, Hibrido, Eletrico};
1// Changing default values of enum constants
2enum suit {
3 club = 0,
4 diamonds = 10,
5 hearts = 20,
6 spades = 3,
7};