Question
C++ language 3. Write a recursive method called substring that takes as parameters a string, a start index, and an ending index, and that returns
C++ language
3. Write a recursive method called substring that takes as parameters a string, a start index, and an ending index, and that returns a specified substring of the string. You are implementing a recursive alternative to the standard substring method. As with the standard substring method, your method should return the substring that begins at the start index and that extends to the character just before the ending index. For example: substring("hello", 0, 2) should return "he" substring("hamburger", 4, 8) should return "urge" substring("smiles", 1, 5) should return "mile" substring("howdy", 3, 3) should return ""
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started