#include <stdio.h> //逆序输出任意字符串 【1】 main() { char zf[100]; int a,b; 【2】; a=【3】; for(b=a-1;b>=0;b--) printf("%c",zf[b]); getchar(); }
#include <stdio.h> //逆序输出任意字符串 #include <string.h> main() { char zf[100]; int a,b; gets(zf); a=strlen(zf); for(b=a-1;b>=0;b--) printf("%c",zf[b]); getchar(); }
标签:输出,zf,C语言,字符串,填空,include,任意,逆序 From: https://www.cnblogs.com/xkdn/p/17132187.html