RosettaCodeData/Task/Enumerations/C/enumerations-2.c
2023-07-01 13:44:08 -04:00

3 lines
107 B
C

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