xxxxxxxxxx
string s1 = "Now is the time...";
string s2 = "for all good men...";
string s3 = s1 + s2;
cout << "s3 is " << s3 << endl;
xxxxxxxxxx
// CONCATS THE STRINGS
string a = "123";
string b = "abc";
cout << (a + b) << endl;
// this gives => "123abc"