C语言判断输出的字符串是否为对称串

#include 
#include 
#include
#define N 10

int main(int argc, char *argv[]) {
     
	
	char str[N],str1[N];
	
	gets(str);
	strcpy(str1,str);
	strrev(str);
	if(strcmp(str,str1) == 0) 
	{
     
		printf("该字符串是对称串"); 
	}
	else{
     
		printf("该字符串不是对称串"); 
		}
	return 0;
}

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