When i try to compile, I get this message:
example1.c++:9:56: error: ‘std::ostream& Date::operator<<(std::ostream&, Date&)’ must take exactly one argument
Unfortunately, the code of the operator function is not nearer explained but used in some examples, please help me run it.
The overload operator << for streams can not be a class member. Or it can be but in this case the left operand will be an object of the class. So declare this operator function as a stand alone function.
outside of struct and than on line eleven after d.m you are missing operator <<and than you need to put comma there without free space. it gives you some weird numbers.