Before:

void printTime( int & hour, int & min, int & sec )
{
   cout << hour << ":" 
        << min << ":" 
        << sec;
}