现在的位置: 首页 > 综合 > 正文

strrev函数

2013年09月03日 ⁄ 综合 ⁄ 共 378字 ⁄ 字号 评论关闭

函数原型:extern char *strrev(char *str)

参数说明:str为源字符串,即待逆置的字符串。
       
所在库名:#include <string.h>
 
函数功能:实现字符串str的逆置。
 
返回说明:返回逆置字符串的指针。

其它说明:暂时无。

实例:

#include <string.h>
#include 
<stdio.h>

int main()
...{
    
char str[100]="I'm sky2098,welcome to my website!";
    
char *strtemp;

    strtemp
=strrev(str);   //实现字符串反序

    printf(
"The string strtemp reversed is:   %s 
",strtemp);

    
return 0;
}

在VC++ 6.0 编译运行:

【上篇】
【下篇】

抱歉!评论已关闭.