函数原型: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;
}
#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 编译运行: