刚开始用VC编译时出现C1010: unexpected end of file while looking for precompi

我快疯掉了

在project->setting->c/c++ ->category里选 precompiled header

然后在下面选not using precompiled header追问

hello.obj : error LNK2005: _main already defined in pro1.obj
Debug/pro1.exe : fatal error LNK1169: one or more multiply defined symbols found
执行 link.exe 时出错.
这个呢?

追答

貌似定义了多个main主函数

温馨提示:内容为网友见解,仅供参考
无其他回答

...unexpected end of file while looking for precompi
在project->setting->c\/c++ ->category里选 precompiled header 然后在下面选not using precompiled header

...unexpected end of file while looking for precompi
在project->setting->c\/c++ ->category里选 precompiled header 然后在下面选not using precompiled header

...C1010: unexpected end of file while looking for precompiled hea...
源文件没有正确结尾,可能是左后少了个大括号或者分号 如果是MFC工程并且是自己手动添加了一个类,则可能是因为类的cpp文件中开头少了这么一句#include <stdafx.h>

Microsoft Visual C++ 6.0出现这个问题该怎么办?
在编译VC++6.0是,出现fatal error C1010: unexpected end of file while looking for precompiled header directive 的错误.解决方法:1、如果发生错误的文件是由其他的C代码文件添加进入当前工程而引起的,则Alt+F7进入当前工程的 Settings,选择C\/C++选项卡,从Category组合框中选中Precompiled Headers,...

...C1010: unexpected end of file while looking for...
(1)肯定是一个新添加的类的.cpp文件开头没包含stdafx.h,在该文件最前面加上即可。(2)有时可以使用右键点击项目工程中的该cpp文件,选择setting,在c\/c++栏,选择PreCompiled headers,然后设置第一选项,选择不使用预编译头,解决这个问题。

显示fatal error C1010怎么处理?
在编译VC++6.0是,出现fatal error C1010: unexpected end of file while looking for precompiled header directive 的错误.解决方法:如果发生错误的文件是由其他的C代码文件添加进入当前工程而引起的,则Alt+F7进入当前工程的 Settings,选择C\/C++选项卡,从Category组合框中选中Precompiled Headers,选择...

...error LNK1168: cannot open Debug\/模板.exe for writing是怎么回事...
最常见的VC++编译错误信息 2008-12-09 22:27 1、fatal error C1010: unexpected end of file while looking for precompiled header directive。寻找预编译头文件路径时遇到了不该遇到的文件尾。解决方法:其一,包含正确路径的#include "stdafx.h";其二,在*.cpp文件的Setting里面设置,C++选项中的...

unexpected end of file while looking for precompiled header...
错误:unexpected end of file while looking for precompiled headerdirective 分析:工程头文件处理的错误。解决办法如下:1、右键点工程名,选设置,然后选c\/c++属性页,再选catagory选单中选 precompiled header ,将选项置成no use 或者autometic 2、如果使用的是Win32工程,可能就是错误文件没有包含:#...

为什么会出现error expected constant expression?
1,运行程序之前的窗口未关闭\\x0d\\x0a2,缺少头文件\\x0d\\x0a3,缺少引导文件\\x0d\\x0a\\x0d\\x0a看看你的错误代码是多少,查查这里\\x0d\\x0a\\x0d\\x0a最常见的20种VC++编译错误信息\\x0d\\x0a\\x0d\\x0a1、fatal error C1010: unexpected end of file while looking for precompiled ...

c++出现fatal error C1004: unexpected end of file found
参考下面 如果确定括号是匹配的话。请在程序结尾按一个回车。确保最后一行后面还有一个空行 提示说程序意外结束,这种问题一般是最后少了一个大括号造成的 1main函数里大括号没有匹配, struct定义}后没有分号, 如果用vc,使用预编译头文件没有include预编译头文件,默认include<stdafx.h> ...

相似回答