摘要: /*reverse函数:倒置字符串s中各个字符的位置*/#include <string.h>void reverse(char s[]){ int c, i, j; for(i=0,j=strlen(s)-1;i<j;i++,j--) { c=s[i]; s[i]=s[j]; s[j]=c; }} 阅读全文
posted @ 2019-11-15 16:47 烟火流沙 阅读(201) 评论(0) 推荐(0) 编辑