C语言怎么错了

/*Note:YourchoiceisCIDE*/#include"stdio.h"#include"stdlib.h"main(){char*str;if((str=(... /* Note:Your choice is C IDE */
#include "stdio.h"
#include "stdlib.h"
main()
{
char * str;
if((str=(char *)malloc(10))==NULL)
{
printf("\n alloction is failed.");
exit(1);
}
else
{
printf("\n alloction is failed.");
gets(str);
if((str=(char *)realloc(20))==NULL)
}
puts(str);
free(str); /*等待键盘输入,观察运行结果。*/

}
展开
 我来答
匿名用户
2007-11-24
展开全部
if((str=(char *)realloc(20))==NULL)

应改为:

if((str=(char *)realloc(str,20))==NULL)

另外,这行末尾没有分号,请根据程序目的自行在适当的位置加上分号。

free(str);
这个语句的作用不是等待输入,而是释放str占用的空间。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wenhao8691
2007-11-24 · TA获得超过171个赞
知道小有建树答主
回答量:124
采纳率:0%
帮助的人:78.4万
展开全部
#include "stdio.h"
#include "stdlib.h"
main()
{
char * str;
if((str=(char *)malloc(10))==NULL)
{
printf("\n alloction is failed.");
exit(1);
}
else
{
printf("\n alloction is failed.");
gets(str);
if((str=(char *)realloc(str,20))==NULL)
;}
puts(str); /*等待键盘输入,观察运行结果。*/
free(str);

}
楼上的没错,帮你调试了一下。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式