C语言中如何实现输入一个字符串再输出该字符串?

除了用数组。。。很感谢一楼,已经成功,可应该如何才能实现输入两个,输出两个呢?我用gets(p);puts(p);gets(q);puts(q);为什么第二个就没用了呢?... 除了用数组。。。
很感谢一楼,已经成功,可应该如何才能实现输入两个,输出两个呢?
我用gets(p); puts(p);
gets(q); puts(q);
为什么第二个就没用了呢?
展开
 我来答
林声飘扬
2010-05-17 · TA获得超过1630个赞
知道小有建树答主
回答量:1126
采纳率:50%
帮助的人:956万
展开全部
#include <stdio.h>
#include <string.h>

void main()
{
char *p;

gets(p);
puts(p);

}

可应该如何才能实现输入两个,输出两个呢?
#include <stdio.h>
#include <string.h>

void main()
{
char *p,*q;

gets(p);
puts(p);

printf("\n");
gets(p);
q=p;
puts(q);

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
__winly
推荐于2018-03-21
知道答主
回答量:18
采纳率:0%
帮助的人:2.9万
展开全部
用puts()直接输出
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
庄胤留嫚
2019-03-07 · TA获得超过3984个赞
知道小有建树答主
回答量:3159
采纳率:25%
帮助的人:190万
展开全部
#include
<stdio.h>
#include
<string.h>
void
main()
{
char
*p;
gets(p);
puts(p);
}
可应该如何才能实现输入两个,输出两个呢?
#include
<stdio.h>
#include
<string.h>
void
main()
{
char
*p,*q;
gets(p);
puts(p);
printf("\n");
gets(p);
q=p;
puts(q);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式