0
1.8kviews
Write a program to validate whether accepted string is palindrome or not.
1 Answer
| written 9.3 years ago by | • modified 6.7 years ago |
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 …