我刚刚在笔记本电脑上安装了Visual C ++ 2010 Express(使用Windows8运行),我创建了一个新项目(Win32控制台应用程序)。
VS 10生成所有文件,当我构建解决方案时,我有以下消息
1>------ Rebuild All started: Project: toDelete, Configuration: Debug Win32 ------
1> stdafx.cpp
1>c:\users\arthur\documents\visual studio 2010\projects\todelete\todelete\stdafx.h(10): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
根据我在其他论坛中读到的内容,我应该在目录中有文件stdio.h(和其他人)
C:\ Program Files(x86)\ Microsoft Visual Studio 10.0 \ VC \ include
该目录似乎只包含一个文件srv.h 如果我的理解是正确的,Visual C ++ Redistributable会在此目录中安装此类文件。我没有任何改变就重新安装了它!
请您确认我的理解是正确的,即目录
C:\ Program Files(x86)\ Microsoft Visual Studio 10.0 \ VC \ include
应该包含stdio.h等文件,然后你知道如何获取它们吗?
非常感谢!