Answers for "operators on strings c++"

C++
0

operators on strings c++

string s1 = "Now is the time...";
 string s2 = "for all good men...";
 string s3 = s1 + s2;
 cout << "s3 is " << s3 << endl;
Posted by: Guest on September-19-2020

Browse Popular Code Answers by Language