Question: 5. Consider the following statement: string str = Now is the time for the party!; What is the output of the following statements? (Assume that

5. Consider the following statement:

string str = "Now is the time for the party!";

What is the output of the following statements? (Assume that all parts are independent of each

other.)

a. cout << str.size() << endl;

b. cout << str.substr(7, 8) << endl;

c. string::size_type ind = str.find('f');

string s = str.substr(ind + 4, 9);

cout << s << endl;

d. cout << str.insert(11, "best ") << endl;

e. str.erase(16, 14);

str.insert(16, "to study for the exam?");

cout << str << endl;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!