-
Naive palindrome substring check written in C.
Below is a quick and naive implementation of a palindrome substring checker written in C. All characters are considered part of the palindrome (i.e. whitespace and punctuation is not filtered out). Substrings of larger palindromes are also printed separately. #include #include /* * printPalindromes – prints all palindromes in * a string, including substrings of…