Welllll, you COULD enter CTRL-A to get Monday, CTRL-B for Tuesday... (but I wouldn't recommend it).
I like some form of menu in this case, something like:
What day of the week is it? (1-Sunday, 2-Monday, 3-Tuesday...)
Then you could switch on the character entered and use it to set 'today' so the compare would work.
If you don't mind making it a little confusing for the user (bad form in my opinion, but to each his own) you could prompt for the actual enum value and scanf into an int.
What day of the week is it? (0-Sunday, 1-Monday, 2-Tuesday...)
@RenFromPenn
What do you want the user to type in at your prompt?
Could you 'type up' what you think the interaction should look like, then we could help you get the code to do what you want.
For the first case of mine above it would look like:
Please select the day of the week:
1 - Sunday
2 - Monday
3 - Tuesday
4 - Wednesday
5 - Thurdsay
6 - Friday
7 - Saturday
What day of the week is it? 7
Hooray, it's the weekend!