Menu
Coddy logo textTech

Palindrome Checker

Lesson 1 of 3 in Coddy's Interview Coding Challenges - Pack VII course.

challenge icon

Challenge

Easy

Write 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
}

All lessons in Interview Coding Challenges - Pack VII

1Challenges

Palindrome CheckerLongest PalindromeMinimum Palindrome Cuts