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

4 lines
107 B
C
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
typedef enum { apple, banana, cherry } fruits;
typedef enum { apple = 0, banana = 1, cherry = 2 } fruits;