这个Cannot open include file: 'stdafx.h': No such file or directory错误怎么改?(急求)
发布网友
发布时间:2022-05-13 23:32
我来回答
共2个回答
热心网友
时间:2023-11-07 11:10
1)把 #include <stdafx.h> 去掉好啦,不影响的。这个是建一个自动工程时自动生成的,不用也可以。
2)另外一种解决方法:你新建一个工程,选择默认的选项,然后你的工程里面就有这个头文件(#include <stdafx.h>)啦
求采纳为满意回答。追问删掉不行会出现这种错误
fatal error C1083: Cannot open include file: 'ApiEx.h': No such file or directory
热心网友
时间:2023-11-07 11:10
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
//#include "stdafx.h" 这个是VC编程中增加的一个用户自定义头文件,删掉得了。
#include <stdio.h>
#include <conio.h> //这个是TC的一个头文件
#include "ApiEx.h"
估计你是复制的别人的代码,你编译会碰到很多问题,最好自己多研究一下