字符串:用指针判断一个字符串是否为回文串。

#include
#include
int huiWen(char *p)
{
	char *s,*e;
	int len=strlen(p);
	s=p;//地址赋值 
	e=p+len-1;
	while(*s==*e&&s<e)
	{
		s++;//地址移动 
		e--;
	}
	if(s<e){
		return 0;
	}else{
		return 1;
	}
}
int main()
{
	char p[20];
	int leap;
	gets(p);
	leap=huiWen(p);
	if(leap){
		printf("是回文!"); 
	} else{
		printf("不是回文!"); 
	}
	return 0;
}

你可能感兴趣的:(C语言)