以下程序中,函数fun的功能是判断一串字符是否为”回文”,若是返回1,否则返回0。所谓”回文”,是指顺读和倒读都一样的字符串。如果”ABCBA”和”xyzzyx”都是”回文”。
需要完善的源程序如下:
#include “stdio.h”
#include “string.h”
int fun(char *s)
{ int i, j, m, t=0;
m=strlen(s);
程序段
return 1;
else return 0;
}
void main()
{ int a; char str[80];
printf(“Enter a string:”);
scanf(“%s”,str);
a=fun(str);
if(a==1) printf(“YES”);
else printf(“NO”);
}