Question: write a recursive function that reverses the string, but you're not allowed to print out the last character in s. only the first character in

write a recursive function that reverses the string, but you're not allowed to print out the last character in s. only the first character in s.

void reverseString(string s) { int length = s.size(); if(length > 0) { cout << s[length-1]; reverseString(s.substr(0, length - 1)); } }

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!