enum in int main code example
Example 1: how to define a enum in c
//enum <name of enumeration> { <possible choices separated by commas> }
enum type_of_fuel{ Gasolina, Gasoleo, Hibrido, Eletrico};
Example 2: a enum data type in c with loop
// example program to demonstrate working
// of enum in C
#include<stdio.h>
enum year{Jan, Feb, Mar, Apr, May, Jun, Jul,
Aug, Sep, Oct, Nov, Dec};
int main()
{
int i;
for (i=Jan; i<=Dec; i++)
printf("%d ", i);
return 0;
}
// OUTPUT
0 1 2 3 4 5 6 7 8 9 10 11