Question: IN C++ Problem 1 1. Write the pseudocode using recursion to reverse a string word by word. E.g., if the input string is A quick
IN C++

Problem 1 1. Write the pseudocode using recursion to reverse a string word by word. E.g., if the input string is "A quick brown fox jumps over the lazy dog", the output needs to be "dog lazy the over jumps fox brown quick A". Put your pseudocode, including all your sources, in a file called recursiveReverseWords.pdf 2. Implement your pseudocode. You are provided a file called recursiveReversewords.cpp with a main function and the function declaration. You will need to include your implementation in this file. The main function includes some test cases. In a separate file called helperwords.h, you will find a function that extracts the first word from a string to help if you are stuck. You can come up with your own implementation for bonus points
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
