strrev()函数(字符串反转)
void strrev(char *s){
char temp;
for(char*end=s+strlen(s)-1;end>s;--end,++s){
temp=*s;
*s=*end;
*end=temp;
}
}
void strrev(char *s){
char temp;
for(char*end=s+strlen(s)-1;end>s;--end,++s){
temp=*s;
*s=*end;
*end=temp;
}
}