0
2.0kviews
Write a program to check whether the given number is palindrome or not. i.e if no is 12421 it is palindrome.
1 Answer
| written 9.3 years ago by |
Palindrome can be a word, phrase, or sequence that reads the same backwards as forwards.
Some palindrome strings examples are "dad", "radar", "madam" etc.
Palindrome program works as follows:- at first we copy the entered string into a new string, and then we reverse the new string and then compares …