Problem

What is the output of the following program? #include #include using namespace std;...

What is the output of the following program?

#include

#include

using namespace std;

int main()

{

string str1 = "Trip to Hawaii";

string str2 = "Summer or Fall";

string newStr;

newStr = str2 + ' ' + str1;

cout << newStr << endl;

cout << str1 + " in " + str2 << endl;

cout << newStr.length() << endl;

cout << str1.find('H') << endl;

cout << str2.find("or") << endl;

cout << newStr.substr(10, 19) << endl;

cout << newStr.replace(23, 6, "******") << endl;

string str = "C++ Programming";

cout << str << endl;

cout << str.length() << endl;

str[0] = 'J';

str[2] = '$';

cout << str << endl;

return 0;

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 7
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT