dev+[error]+"printf+"was+not+declared++in+this+scope
时间: 2023-11-11 17:07:34 浏览: 172
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
这个错误提示是因为在你的代码中使用了printf函数,但是编译器无法找到该函数的声明。这通常是因为你没有包含stdio.h头文件,该头文件中包含了printf函数的声明。
你可以在代码中添加以下语句来包含stdio.h头文件:
```
#include <stdio.h>
```
这样就可以解决该错误了。
阅读全文