Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所有,原谅我是 C++ 世界的新手,我在这里找到了一个复制文件源代码。
帖子中的第一个示例使用了 ANSI C 库。所以我想在我的电脑上测试这个样本。但是我发现在我的 c++ 项目中有错误说Can not open the source file cstdio.h。而且我没有在我的c:磁盘中找到它。我应该安装windows sdk吗?顺便提一句。我的项目是一个 WDK 项目。谢谢。
Can not open the source file cstdio.h
c:
windows sdk
确保您的代码说#include <cstdio>而不是#include <cstdio.h>.
#include <cstdio>
#include <cstdio.h>
如果您的代码#include <cstdio>显示并且您的编译器正在寻找cstdio.h,那么您迫切需要找到更好的编译器。
cstdio.h
如果您使用的是 C++,则正确的标题名称是<cstdio>(not cstdio.h)。
<cstdio>