void Employee::calc_probationary_date()
{
for (int i = 0; i < 90; i++)
{
void tomorrow();
// how save the date and output it?
}
}
You can use '&' and pointer to save the value in void.
If you don't want to use them, then you should not use void, because using other datatypes (eg. int,double,float,bool) you can return something.
Ugh this isn't working correctly, thank you, I didn't realize I had void there!
But I cannot change anything on tomorrow(); This is for a class and I have spent hours on this and cannot figure out how to store it without changing tomorrow.