show/hide this revision's text 2 added 103 characters in body

There's no built-in solution. Easiest way is with an array of char* where the enum enum's int value indexes to a string containing the descriptive name of that enum. If you have a sparse enum (one with that doesn't start at 0 or has gaps in the numbering) and where some very of the int mappings are high enum values enough to make an array-based mapping impractical then you might need to could use a hash table instead.

show/hide this revision's text 1

There's no built-in solution. Easiest way is with an array of char* where the enum value indexes to the descriptive name of that enum. If you have a sparse enum (one with gaps in the numbering) and some very high enum values then you might need to use a hash table instead.