I want a program that takes a date as input and prints out the day of the week corresponding to the date. I need it in turbo C. I cannot use the API of visual C/C++. For example:
Input:
12-18-2009
Ouput:
It is a friday!
The input is in the following format:
mm-dd-yyyy
The date could either be in the past or in the future. Check if the input is correct. For example:
Input:
02-30-2009
Output:
Invalid date
How do I do it in C (Turbo C and not Visual C/C++)
