// 22.5HV2 Software Engineering II // Unit 4 Exercise 2 #include #include class Name { friend ostream& operator<<(ostream&, const Name&); public: Name(char* f, char* l) { strcpy(first,f); strcpy(last,l); } private: char first[20], last[20]; };