Question: Given string stringValue on one line, integer posBegin on a second line, and integer len on a third line, output the substring of stringValue starting

Given string stringValue on one line, integer posBegin on a second line, and integer len on a third line, output the substring of stringValue starting at position posBegin and with length len. End with a newline.

Ex: If the input is:

Fuzzy bear 3 4

then the output is:

zy b

Note: Using a pre-defined string function, the solution can be just one line of code.

1 #include 2 #include 3 using namespace std; 4 5 int main() { 6 7 8 9 10 11 12 13 14 15 16 17} Check string 

1 #include 2 #include 3 using namespace std; 4 5 int main() { 6 7 8 9 10 11 12 13 14 15 16 17} Check string stringValue; int posBegin; int len; getline (cin, stringValue); cin>> posBegin; cin >> len; /* Your code goes here */ return 0;1 1 Next level 2 3 How was this section? 13 9 Provide section feedback Feedback?

Step by Step Solution

3.32 Rating (146 Votes )

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 Programming Questions!