字符串函数strrev

原型:extern char *strrev(char *s);

用法:#include <string.h>

功能:把字符串s的所有字符的顺序颠倒过来(不包括空字符NULL)。

说明:返回指向颠倒顺序后的字符串指针。

举例:

   // strrev.c
   
   #include <syslib.h>
   #include <string.h>
   int main(void)
   {
    char *s="Welcome To Beijing";
    
    clrscr();
    textmode(0x00); // 6 lines per screen
    
    printf("%sn%s",s,strrev(strdup(s)));
        
    getchar();


    return 0;
   }

你可能感兴趣的:(字符串函数strrev)