You are viewing a single comment's thread. Return to all comments →
ostream& operator<<(ostream& out,const Person& pers){ out<<"first_name="<<pers.get_first_name()<<","<<"last_name="<<pers.get_last_name(); return out; }
Overloading Ostream Operator
You are viewing a single comment's thread. Return to all comments →