strrev函数

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

参数说明:str为源字符串,即待逆置的字符串。
       
所在库名:#include
 
函数功能:实现字符串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 编译运行:

strrev函数_第1张图片

 

你可能感兴趣的:(C/C++)