int fun(char *s){ char *p1,*p2; p1=s;p2=s; while(*p2++); p2--; while(p1 if(*p1==*p2) { p1++; p2--; } else break; if(p1>p2) return 1; else return 0;}