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.