标签:blog io 使用 ar sp c log r size
#include <malloc.h>
char* Reverse(char* s)
{
char* q = s ;
while( *q++ ) ;
q -= 2 ;
字符串逆序(使用指针实现)
原文地址:http://www.cnblogs.com/wqh2965031/p/3990940.html