Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

write c++ program use character array the program should prompt the user to Ente

ID: 3618718 • Letter: W

Question

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