请问怎么解决啊?工程中包含“stdafx.h”文件
求同志们帮我解决一下,谢谢了
VC中出现:fatal error C1083: Cannot open include file: 'stdafx.h...
新建工程时向导有个“预编译头文件”,这个选项里的对号不要取消,生成工程时不要选“空工程”,这个文件不会自动生成,就不会出现这个错误提示了。
...Cannot open include file: 'stdafx.h': No such file or directory...
就是说,你这个程序的这行include<stdafx.h>错误了 这个是预编译头文件,你可能是直接复制粘贴然后运行的吧?可以直接删除,可能会少一点头文件,你可以在程序的首部定义一下简单的标准输入输出头文件试试看。C的话include<stdio.h> C++的话include<iostream.h> 也有可能少其他的头文件。这就要看这个...
...Cannot open include file: 'stdafx.h': No such file or dir_百度...
看一下你建的工程目录里面有没有stdafx.h这个文件吧,估计没有,你可以找一个stdafx.h头文件放在你的工程目录下,再重新运行一遍。或者,在FileView里的Header Files选项,右击,选择“添加文件到目录”,加入你刚才加的stdafx.h头文件,再重新运行一遍即可 ...
...Cannot open include file: 'stdafx.h': No such file or directory...
点C++菜单栏上面的“工具”-“选项”-“目录” 看到路径了吧,新建一个路径 找到你放C++的文件夹,找到\\Microsoft Visual Studio\\VC98\\INCLUDE 点确定就好。
fatal error C1083: 无法打开包括文件:"stdbool.h": No such file or...
步骤1:定位报“fatal error C1083: ”错误的文件,找到它所在的目录。 步骤2:添加该项目的附加路径 。如图所示: 1)右键查看该项目的属性 2)点击配置属性——〉 C\/C++ ——〉 常规 ——〉 附加包含目录——〉将报错文件所在目录添加进去 3) 将项目的本地路径替换为工程相对路径 工程...
...Cannot open include file: 'stdafx.h': No such file or directory...
无法找到相应的头文件,路径不存在。这个是vc使用的标准预编译头。
...Cannot open include file: 'stdafx.h': No such file or directory...
C语言编程问题出现错误Cannot open include file: 'stdafx.h': No such file or directory大家帮帮忙吧 10 #include"stdafx.h"#include<stdio.h>#include<math.h>#include<stdlib.h>#include<graphics.h>#include<conio.h>#defineN1000\/*定义复数类型*\/typedefstruct{doublereal;doubleimg;}... #include "...
...Cannot open include file: 'stdafx.h': No such file or directory...
stdafx.h 如果你是使用向导创建工程,那么向导会为你生成这个文件。 如果不是你可以把#include “stdafx.h”这行删掉
fatal error C1083: Cannot open include file: 'stdexcept.h': No...
有这个文件, 是路径问题了。把路径加入 环境变量 INCLUDE。也可试 include <stdexcept> 或试用 #include <STDEXCPT.H>
...Cannot open include file: 'stdafx.h': No such file or directory...
退出,删除NCB,aps,OPT 这三个后缀的文件和release 与debug ,rebuild。