Question: Design a C++ program that will read each line of text from a file, print it out to the screen in forward and reverse order
Design a C++ program that will read each line of text from a file, print it out to the screen in forward and reverse order and determine if it is a palindrome, ignoring case, spaces, and punctuation. (A palindrome is a phrase that reads the same both forwards and backwards.)
Example program run:
A Toyota's a Toyota
atoyoT a s'atoyoT A
This is a palindrome!
Hello World
dlroW olleH
This is NOT a palindrome!
Dont use the C++ Standard Template Library (Algorithms, Arrays, Iterators, or Templates)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
