Solution Review 1: Find if the Array is a Palindrome
This lesson gives a detailed solution review of how to find if the array is a palindrome.
We'll cover the following...
We'll cover the following...
Solution: Is the array a palindrome?
Understanding the code
A recursive code can be broken down into two parts. The recursive function and the main where the function is called.
Driver Function
The driver code is from line 21 to line 33
- In the driver code, an
arrayis defined. - The
sizeof the array is defined on line 25. - The function