strcpy()函数

strrev()函数(字符串反转)

ClimbCM posted @ Mar 12, 2009 09:24:25 PM in C语言基本函数库实现 with tags c string , 876 阅读

void strrev(char *s){
 char temp;
 for(char*end=s+strlen(s)-1;end>s;--end,++s){
  temp=*s;
  *s=*end;
  *end=temp;
 }
}

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter