CS 255 Project 2

Value: 25 points
Due Date: 5/26/1999

This involves string handling. The strings are NUL-terminated arrays as discussed in class. The object of the function is
to determine if the string is a palindrome. That is, is the string the same forwards and backwards? A couple of examples are:
Madam, I'm Adam
A man, a plan, a canal, Panama!
You don't need to remove the punctuation. So the actual data you would see would be
madamimadam
amanaplanacanalpanama
The function should return true or false.

What to hand in: I want a listing of the program. This should look like pseudocode.

Grading:
I will grade on whether it works and the clarity of the comments.
The length of the program doesn't matter.
I will check it against various inputs so test it carefully.