习题8-8 判断回文字符串 (C语言实现) #include <stdio.h> #include <string.h> #define MAXN 20 typedef enum { false, true} bool; bool palindrome( char *s )