Hi. I'm new to the forums, and I have a quick question. I would like to add 14 days to the current system date in a program. Here is my code:
char date[9];
_strdate(date);
char time[9];
_strtime(time);
cout << "The due date of your books is: "
<< date
<< endl;
Thanks in advance