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

4 lines
107 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
typedef enum { apple, banana, cherry } fruits;
typedef enum { apple = 0, banana = 1, cherry = 2 } fruits;