Question: USING C++ Write a program to practice how to use length(), find() and substr() funcitons. You should understand the first exercise before you try this

USING C++

Write a program to practice how to use length(), find() and substr() funcitons. You should understand the first exercise before you try this one.

Follow the steps below:

Declare a string variable: OriginalString.

Assign "And now for something completely different." to OriginalString.

Display the length of OriginalString.

Find and display the position of "completely" in the OriginalString.

Declare a string variable: NewString.

Use the substr() function to get this sub-string of OriginalString: "And now for something ". then assign it to NewString.

Output NewString.

Get a sub-string of OriginalString with value "different.". Add this substring to NewString.

Display NewString. The output should look like this: And now for something different.

Compile and run this C++ program.

Show your lab instructor the program output.

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!