#include int IsPalindrome(char *Str); int main() { assert(IsPalindrome("racecar")); assert(IsPalindrome("alice")); }