SyntaxFix
Write A Post
Hire A Developer
Questions
An enum is nearly an integer. To simplify a lot
enum yourenum { a, b, c };
is almost like
#define a 0 #define b 1 #define c 2
Of course, it is not really true. I'm trying to explain that enum are some kind of coding...