In: Computer Science
Design a 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!
Note:
You are only designing the program at this point.
Submit:
Pseudocode demonstrating your program plan.
Function prototypes with description and pre/post conditions.
Running shell program
Below is the required code snippest:
Thank you.