// String test // Michael Rothstein // (date) #include #include using namespace std; int main(){ string s0 = "Hi there"; cout << s0; string s1 = "hi" + ' ' + "there"; cout << s1; }