编写程序,判断一个字符串是否为回文,要求用指针实现编程

2024-11-16 14:40:14
推荐回答(1个)
回答1:

int func(char *s)
{
    char *p = s;
    while(*p)p++;
    p--;
    while(*p == *s && p>s) p--,s++;
    return p<=s;
}