当前位置:系统粉 > 电脑问答 > 其他问答 > 有关一道C语言编程题

有关一道C语言编程题

提问者:童话信仰  |  浏览 次  |  提问时间:2017-03-16  |  回答数量:3

有关一道C语言编程题 请大家帮忙一下,一道C言题写一个函数,使输入的一个字符串按反序存放,在主函数中输入和输出字符串。能写出来交流一下更好,或者提一下思路,谢谢

已有3条答案
freemanmrx

freemanmrx

回答数:95  |  被采纳数:3

2017-03-16 21:52:40
#include <stdio.h>void Change(char *p){ int len = strlen(p); int i=0; char temp; for (i=0;i<len;i++){temp = p[len-1];p[len-1] = p[i];p[i] = temp;len--;}}int _tmain(int argc, _TCHAR* argv[]){char a[10] ="hello";Change(a);printf("%s",a);return 0;}复制代码
赞 9
请叫我流gg

请叫我流gg

回答数:212  |  被采纳数:69

2017-03-17 02:38:22
谢谢楼上的帮助,但第16行语法错误了,我检查了一遍找不到,在帮一下忙谢谢
赞 21
wdasmu

wdasmu

回答数:75  |  被采纳数:84

2017-03-17 02:06:44
不是第16行错了,是我们用的编译器不一样
你换成
int main()
赞 7
解决方法
版权信息

Copyright @ 2011 系统粉 版权声明 最新发布内容 网站导航