fatal error C1010: unexpected end of file while looking for precompiled head

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fatal error C1010: unexpected end of file while looking for precompiled head相关的知识,希望对你有一定的参考价值。

#define PERIOD 10
#define PRINCIPAL 5000.00

void main(void)


int year;
float amount, value, inrate;
amount = PRINCIPAL;
inrate = 0.11;
year = 0;
while(year <= PERIOD)

printf("%2d %8.2f\n",year,amount);
value = amount + inrate * amount;
year = year + 1;
amount = value;



然后它出来:fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.
这是怎么回事啊?怎么办啊?!!

致命错误C1010:在寻找预编译指示头文件时,文件未预期结束。
就是没有找到预编译指示信息的头文件。
问题一般发生在:通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,而是标准的C++。
解决方案1: 右键单击项目工程中的cpp文件,在菜单Project->Settings->C/C++->Precompile Header,设置为第一项:Not using precompile headers。
解决方案2:在.cpp文件开头添加包含文件stdafx.h。 #include"stdafx.h"
参考技术A 我觉得可能是因为你不慎编辑错了某个头文件.
错误信息的意思是它的意思是头文件结尾的地方不应该是结尾.和你编译C程序时如果大括号不匹配等情况下出现此错误是一回事,所以建议针对该头文件仔细查查.
如果出错的文件是C++系统的头文件,可能需要从其它同样的系统中复制一份过来了.

解决 “fatal error C1083: ”无法打开包括文件

添加该项目的附加路径 。

1)右键查看该项目的属性 
2)点击配置属性——〉  C/C++  ——〉  常规  ——〉 附加包含目录——〉将缺失文件所在目录添加进去 

以上是关于fatal error C1010: unexpected end of file while looking for precompiled head的主要内容,如果未能解决你的问题,请参考以下文章

Error:fatal error C1010: unexpected end of file while looking for precompiled head

fatal error C1010: unexpected end of file while looking for precompiled head

Visual Studio解决错误 fatal error C1010: unexpected end of file while looking for precompiled head(转)(

fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to ad

fatal error C1010: 在查找预编译头时遇到意外的文件结尾。是否忘记了向源中添加“#include "stdafx.h"”?

错误描述:fatal error C1010: 在查找预编译头时遇到意外的文件结尾。是否忘记了向源中添加“#include "stdafx.h"”?(转)