Palindrome Checker
Lesson 1 of 3 in Coddy's Interview Coding Challenges - Pack VII course.
Challenge
EasyWrite a function named isPalindrome to determine if a string is a palindrome.
A palindrome is a word or phrase that reads the same backward as forward.
The function should take a string as input and return true if it is a palindrome, and false otherwise.
Try it yourself
#include <stdbool.h>
bool isPalindrome(char* s) {
// Write code here
}