write c++ program use character array the program should prompt the user to Enter some word (Maximium 9 characters are allowed) the program should check whether the number entered by theuser was palindrome or not . Example: asdfgfdsa is palindrome.. write c++ program use character array the program should prompt the user to Enter some word (Maximium 9 characters are allowed) the program should check whether the number entered by theuser was palindrome or not . Example: asdfgfdsa is palindrome..
Explanation / Answer
please rate - thanks #include using namespace std; bool isPalindrome( char[] ); int main() {char input[50]; bool palin; int i; cout