C语言旅途之使字符串反向问题

Ⅰ、字符串反向问题: ①、//代码摘下直接可以运行 //字符串反向问题 #include<stdio.h> #include<string.h> int main() { char str[80],c; int i,j,n; printf(“Input the number of string:\n”); gets(str); //非格式化输入函数; n=strlen(str); for(i=0,
相关文章
相关标签/搜索