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)网上搜索的解决方法貌似都没有用,(有可能是设置的原因)求高手~~
展开
 我来答
匿名用户
推荐于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"
匿名用户
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文件,包含即可.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-11-30
展开全部
新建工程时 选择 Win32 Console Application(VC6.0 选工程时的倒数第三个)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式