RosettaCodeData/Task/Enumerations/C/enumerations-2.c

4 lines
107 B
C

typedef enum { apple, banana, cherry } fruits;
typedef enum { apple = 0, banana = 1, cherry = 2 } fruits;