(C++) A palindrome is a word spelled the same way backwards and forwards. For example, Anna, radar, madam and racecar are all palindromes. Certain words can be turned into palindromes when the first letter is removed and added at the back, e.g. ‘potato’will read the same backwards if we remove the ‘p’ and add it at the back, i.e. ‘otatop’ read backwards will still say ‘potato’. Similarly, ‘banana’ when you remove the ‘b’ and add it at the back so that it becomes ‘ananab’ will still say ‘banana’ if you read it backwards. Write a program that reads a word into a C-string (a character array). The program should then determine whether the word would be a palindrome if we remove the first character and add it at the back of the word.
Use only C-string functions and C-strings.Assume that we will not work with words longer than 20 characters.
(C++) A palindrome is a word spelled the same way backwards and forwards. For example, Anna, radar, madam and racecar
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am