Question: Given the declarations below, using the erase function, write the statements to remove all of the characters from the name string, except for Last? string

Given the declarations below, using the erase function, write the statements to remove all of the characters from the name string, except for "Last"?
string name = "First Last"; // note the space between First and Last
a.
name.erase(1,6);
b.
name.erase(0,7);
c.
name.erase(0,6);
d.
name.erase(0,5);

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!