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
Get step-by-step solutions from verified subject matter experts
