Problem

This Practice Program requires that you read the optional section about pointer arithmetic...

This Practice Program requires that you read the optional section about pointer arithmetic. Complete the function isPalindrome so that it returns true if the string cstr is a palindrome (the same backwards as forwards) and false if it is not. The function uses the cstring library.

bool isPalindrome(char* cstr){      char* front = cstr;      char* back = cstr + strlen(cstr)-1;      while (front

Here is a sample main function for quick and dirty testing:

int main(){      char s1[50] = "neveroddoreven";      char s2[50] = "not a palindrome";      cout << isPalindrome(s1) << endl; // true      cout << isPalindrome(s2) << endl; // false      return 0;}

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 9
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT