Question: bool isPalindrome(const int* arrInt,int SIZE); (C++ Programming) You are to create a function that checks the contents of an integer array to see if it
bool isPalindrome(const int* arrInt,int SIZE); (C++ Programming)
You are to create a function that checks the contents of an integer array to see if it is a palindrome. Note it returns a boolean value.
palindrome = 1,2,3,4,3,2,1 or 1,2,3,2,1
not a palindrome = 1,2,3,2,3,1 or 1,2,3,2,3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
