欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言判断是否为回文字符串

程序员文章站 2024-01-14 13:36:52
...
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<windows.h>
#include<string.h>

int main()
{
	char str[] = "abcba";
	char j = strlen(str) - 1;
	int i = 0;
	if (str[i++] == str[j++])
	{
		printf("%s is IsPalindrome\n", str);
	}
	else
	{
		printf("%s is not IsPalindrome\n", str);
	}
		
	system("pause");
	return 0;
}