Prepare a recursive method that reverses the elements.
Question: Suppose that intArray is an array of integers, and length specifies the number of elements in intArray.
Also, suppose that low and high are two integers such that 0 <= low < length, 0 <= high < length, and low < high. That is, low and high are two indices in intArray.
Q: Write a recursive definition that reverses the elements in intArray between low and high.
You need to implement this in C++ language. You need to provide the answer as soon as possible.