C语言 : 实现字符串倒序

程序:ubuntu #include <stdio.h> #include <stdlib.h> #include <string.h> int fun(char *w) { char t, *s1,*s2; int n = strlen(w); s1 = w; s2 = w+n-1; while(s1<s2)
相关文章
相关标签/搜索