文件读入单词一直不停是为什么呢?调试后显示这个 program received signal sigsegv,segmentation fault

是个新手实在找不到为什么结果就是屏幕输出文件的内容后又继续无限输出空白新建的文件也是空白的#include<stdio.h>#include<stdlib.h>#defi... 是个新手 实在找不到为什么结果就是 屏幕输出文件的内容后又继续无限输出空白
新建的文件也是空白的
#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct Words)
struct Words
{char wd[20];
struct Words*next;
};
FILE *in,*out;
struct Words*creat(void)
{struct Words*head,*p1,*p2;
int n=0;
p1=p2=(struct Words*)malloc(LEN);
fscanf(in,"%s",p1->wd);
printf("%s\n",p1->wd);
head=NULL;
while(p1->wd!=0)//??
{n=n+1;
if(n==1)head=p1;
else p2->next=p1;
p2=p1;
p1=(struct Words*)malloc(LEN);
fscanf(in,"%s",p1->wd);
printf("%s\n",p1->wd);
}
p2->next=NULL;
return(head);
}
int main()
{struct Words*pt;
char infile[20];
printf("Enter file name:");
scanf("%s",infile);
in=fopen(infile,"r");
out=fopen("words2.txt","w");
if(in==NULL||out==NULL)
{printf("Open the file failure...\n");
exit(0);
}
printf("Opening file...");
pt=creat();
while(pt==NULL)
{fprintf(out,"%s\n",pt->wd);
printf("%s\n",pt->wd);
pt=pt->next;
}
fclose(in);
getchar();
return 0;
}
展开
 我来答
介庆生wA
2019-04-05 · TA获得超过334个赞
知道小有建树答主
回答量:393
采纳率:33%
帮助的人:56.7万
展开全部
#include #include s; cout << s; return 0;}//这样才行
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式