We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
can someone help me write a C++ program that dispays the day of the week of a particular date that has been entered e.g. the date is 12/02/2000,the program displays both the date and the day of the week of that date.
void main(void) { cout << DeduceDateDetails("12/02/2000"); }
There's the starting point. I'll leave it to you to fill in the remaining missing detail.