how to define a enum in c

C
//enum <name of enumeration> { <possible choices separated by commas> } 
enum type_of_fuel{ Gasolina, Gasoleo, Hibrido, Eletrico};
Source

Also in C: