Content
Q: Write a program to check whether a word is palindrome or not. include iostream using namespace std; int main() dio meme string word1; string word2; cout "Enter the word : cin word1; cout "Enter it in the reverse order : " cin word2; if(word1.compare (word2) 0) cout word1 " is palindrome"; else cout wordI " is not palindrome";