If I have more than one enum, eg:
enum
enum Greetings{ hello, bye, how }; enum Testing { one, two, three };
How can I enforce th
You can typedef your enums and then declare variables and function arguments of those types.