C语言问题求教 关于文件fatal error C1010: unexpected end of file while looking for precompiled h

#include"stdio.h"#include"stdlib.h"voidmain(){FILE*infp,*outfp;charch;if((infp=fopen(... #include "stdio.h"
#include "stdlib.h"
void main( )
{ FILE *infp,*outfp; char ch;
if ((infp=fopen(“c:\\infile.c”, “r”))== NULL)
{ printf(“Cannot open this infile. \n”);
exit(0);
}
if ((outfp=fopen(“c:\\outfile.c”, “w”))== NULL)
{ printf(“Cannot open this outfile. \n”);
exit(0);
}
 while(!feof(infp))
   if((ch=fgetc(infp))!=EOF)
     fputc(ch,outfp);
  fclose(infp);
  fclose(outfp);
}
fatal error C1010: unexpected end of file while looking for precompiled header directive
Error executing cl.exe.
展开
 我来答
xoaxa
2013-08-14 · TA获得超过8607个赞
知道大有可为答主
回答量:6415
采纳率:72%
帮助的人:3395万
展开全部

// 双引号用错了,换成半角双引号即可

#include <stdio.h>
#include <stdlib.h>

void main() {
FILE *infp,*outfp;
char ch;
if((infp = fopen("c:\\infile.c","r")) == NULL) {
printf("Cannot open this infile. \n");
exit(0);
}
if((outfp = fopen("c:\\outfile.c","w")) == NULL) {
printf("Cannot open this outfile. \n");
exit(0);
}
while(!feof(infp))
if((ch = fgetc(infp)) != EOF)
fputc(ch,outfp);
fclose(infp);
fclose(outfp);      
 }
追问
依然无法通过啊,还是那个错误
追答
你把我上传的代码复制到你的编译环境,再编译看看,如果仍出现这样的错误,可能是的编译器有问题,该重新安装或更换了。
捷训
2013-08-14 · TA获得超过113个赞
知道答主
回答量:28
采纳率:100%
帮助的人:33.9万
展开全部
C1010是预编译错误,修改这个错误的关键在于在文件的最开始添加一行:
#include "stdafx.h"

之后还有一些语法错误,xoaxa都已经修改过来了。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
救赎削肾客
2013-08-19 · TA获得超过1186个赞
知道大有可为答主
回答量:1196
采纳率:0%
帮助的人:935万
展开全部
你这是从编译器中复制过来的吗??
里边的符号都是中文符号啊!!引号什么的
=======================
楼主问题不管啦??
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式