#include #include #include "date.h" using namespace std; int main() { date d; //Default constructor puts today into the newborn object. cout << d++ << "\n"; //Outputs today, leaves d holding tomorrow. cout << d << "\n"; //Outputs tomorrow. return EXIT_SUCCESS; }