#include #include using namespace std; int main() { string me = "Chris"; string metoo("Chris2"); // normal constructor` string me3( metoo ); // copy constructor string me4 = me3; // overloaded = operator cout << me << endl; cout << metoo << endl; cout << me3 << endl; cout << me4 << endl; }