vote up -2 vote down star

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++)

flag

6% accept rate
2  
smells like home work to me – chupacabra Sep 16 at 4:50
complete duplicate of stackoverflow.com/questions/1430997/… – thephpdeveloper Sep 16 at 4:51
1  
no effort = not a real question; vote to close – Steven A. Lowe Sep 16 at 4:54
3  
Seriously, Turbo C? Why on earth would you need to use such an antique compiler? – Greg Hewgill Sep 16 at 4:55
8  
@Greg: Most likely because he traveled through time to ask us this question. Obviously. – Mark Rushakoff Sep 16 at 4:57
show 1 more comment

closed as not a real question by Steven A. Lowe, Shog9, bigmattyh, Chris Smith, greyfade Sep 16 at 6:11

3 Answers

vote up 6 vote down

I'm not going to code your homework, but you may find the Doomsday Algorithm useful.

link|flag
vote up 1 vote down

Parse input string to fill struct tm, then use strftime with %A argument to get string representation of week day.

link|flag
If available, strptime() can parse date/time strings. I have my doubts that it is available - I'm not even sure whether strftime() would be available. – Jonathan Leffler Sep 16 at 5:27
strftime is part of C Standard ( 7.23.3.5 ). strptime is not. – Kirill V. Lyadvinsky Sep 16 at 5:37
Yes, you're right; the question wasn't about standard C but about Turbo C - and I don't know what is available in that dialect. – Jonathan Leffler Sep 16 at 6:34
vote up 0 vote down

Try looking at ctime.h and the functions defined there.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.