Hello,
Please I want to get an input of string, like mm/dd/yyyy hh/mm/ss
where first mm is month,.... and second mm is minutes....
then want to split each into date object.. like ... month day year.... after each / ....
I am lost here...
thanks
istream &operator>>(istream& inputStream, Date& dateObject)
{
string inVariable[20];
inputStream.getline(inVariable, 20, "\n" );
//inputStream >> inVariable;
}