C语言编译出错
VisualC++6.0中文版+Win32环境,代码应该不会错:#include<stdio.h>intmain(void){printf("Hello,world!\n...
Visual C++ 6.0中文版+Win32环境,代码应该不会错:#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}在编译时出错:d:\program files\microsoft visual studio\myprojects\c_test\test.cpp(7) : fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.test.obj - 1 error(s), 0 warning(s)网上搜索的解决方法貌似都没有用,(有可能是设置的原因)求高手~~ 展开
int main(void)
{
printf("Hello, world!\n");
return 0;
}在编译时出错:d:\program files\microsoft visual studio\myprojects\c_test\test.cpp(7) : fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.test.obj - 1 error(s), 0 warning(s)网上搜索的解决方法貌似都没有用,(有可能是设置的原因)求高手~~ 展开
3个回答
推荐于2017-05-18
展开全部
在编译VC++6.0是,出现
fatal error C1010: unexpected end of file while looking for precompiled header directive
问题详细解释:
致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的头文件。
问题一般发生在:
通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,是标准C++的。
解决方案1:
右键点击项目工程中的该cpp文件,在菜单Project 》Settings里C++页面的Precomplie Header,设置为第一项:Not using precompiled headers。
解决方案2:
在.cpp文件开头添加包含文件stdafx.h。
#include "stdafx.h"
fatal error C1010: unexpected end of file while looking for precompiled header directive
问题详细解释:
致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的头文件。
问题一般发生在:
通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,是标准C++的。
解决方案1:
右键点击项目工程中的该cpp文件,在菜单Project 》Settings里C++页面的Precomplie Header,设置为第一项:Not using precompiled headers。
解决方案2:
在.cpp文件开头添加包含文件stdafx.h。
#include "stdafx.h"
2013-11-30
展开全部
fatal error C1010: unexpected end of file while looking for precompiled header directive
在工程内添加了新文件(当前工程是简单win32控制台应用,Win32 Console Application添加之后,编译出现fatal error C1010: unexpected end of file while looking for precompiled header directive
Error executing cl.exe. 错误位置提示在新添加的文件中(.h文件),在这种情况下出现这个错误,一般是该文件没有包含StdAfx.h文件,包含即可.
在工程内添加了新文件(当前工程是简单win32控制台应用,Win32 Console Application添加之后,编译出现fatal error C1010: unexpected end of file while looking for precompiled header directive
Error executing cl.exe. 错误位置提示在新添加的文件中(.h文件),在这种情况下出现这个错误,一般是该文件没有包含StdAfx.h文件,包含即可.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-11-30
展开全部
新建工程时 选择 Win32 Console Application(VC6.0 选工程时的倒数第三个)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询