Consider:
enum Test { a = 3, b = 7, c = 1 };
I want to access the enum using an index. Something like this:
for
You can't do that. A C enum is not much more than a bunch of constants. There's no type-safety or reflection that you might get in a C# or Java enum.
enum