Enum isn't exactly what you're looking for. Enum is used for creation of new types that have named integers as their members.
For example:
enum Days { MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY };
And MONDAY would equal 0, TUESDAY would equal 1, etc.
Now, for your purposes, there isn't something that "automatically" denies any other string but those that you want to allow. You'd have to do this by either error checking, or creating a struct or class with operator overloading. As you don't even know what an enum is, I doubt you'll be able to grasp operator overloading, or OOP (Object Oriented Programming) to begin with.
In short, just check the char array/string's value against your predefined data sets, if they match, continue, if they don't, ask for input again.
Hope this helps,
RaWx