c++编译时出现错误fatal error C1083: Cannot open include file: 'mem.h': No such file or directory?C++中出现fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory是怎么回?
- c++编译时出现错误fatal error C1083: Cannot open include file: 'mem.h': No such file or directory?
- C++中出现fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory是怎么回?
c++编译时出现错误fatal error C1083: Cannot open include file: 'mem.h': No such file or directory?
项目配置目录要正确,并且目录下面确定要有student.h这个文件,同事注意大小写,VS08里面进入项目属性栏找到C/C++项,然后找到AdditionalIncludeDirectories项,在后面加入student.h所在的路径,相对路径和绝对路径都可以,建议用相对路径
C++中出现fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory是怎么回?
// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 // #pragma once #ifndef _WIN32_WINNT // 允许使用特定于 Windows XP 或更高版本的功能。
#define _WIN32_WINNT 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。#endif VC生成的工程目录有三个头文件、源文件、资源文件。你说的这个文件需要放到头文件目录下,然后内容如下: #include
0