(C++) A palindrome is a word spelled the same way backwards and forwards. For example, Anna, radar, madam and racecar

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

(C++) A palindrome is a word spelled the same way backwards and forwards. For example, Anna, radar, madam and racecar

Post by answerhappygod »

(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.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply