strrev函数
函数原型:extern char *strrev(char *str)
参数说明:str为源字符串,即待逆置的字符串。
        
所在库名:#include <string.h>
  
函数功能:实现字符串str的逆置。
  
返回说明:返回逆置字符串的指针。
其它说明:暂时无。
实例:
 #include <string.h>
#include <string.h> #include <stdio.h>
#include <stdio.h>
 int main()
int main() {
{ char str[100]="I'm sky2098,welcome to my website!";
    char str[100]="I'm sky2098,welcome to my website!"; char *strtemp;
    char *strtemp;
 strtemp=strrev(str);   //实现字符串反序
    strtemp=strrev(str);   //实现字符串反序
 printf("The string strtemp reversed is:   %s  ",strtemp);
    printf("The string strtemp reversed is:   %s  ",strtemp);
 return 0;
    return 0; }
}在VC++ 6.0 编译运行:
Keep it simple!
 
                     
                    
                 
                    
                
 
                
            
         
         浙公网安备 33010602011771号
浙公网安备 33010602011771号