#include #include #include "mystring.h" int main() { mystring s = "hello"; mystring t = "goodbye"; s = t; //s.operator=(t); in line 29 of mystring.C t = "Hello"; //t.operator=("Hello"); in line 47 of mystring.C cout << "s == \""; s.print(); cout << "\"\n"; cout << "t == \""; t.print(); cout << "\"\n"; return EXIT_SUCCESS; }