void strchange(char s[]) { char c,*p; p=s; while(*p!='\0') p++; p--; while(s<p) { c=*s; *s++=*p; *p--=c; } }
[此贴子已经被作者于2017-12-28 19:42编辑过]