Here\'s what I am trying to do:
typedef enum { ONE, TWO, THREE } Numbers;
I am trying to write a function that would do a switch case sim
If the enum index is 0-based, you can put the names in an array of char*, and index them with the enum value.