29 28 C:\Users\ysmhy\Desktop\新建文件夹\c语言学习\例子\数组.cpp [Error] 'print' was not declared in this scope
时间: 2024-01-24 18:16:07 浏览: 78
这个错误提示意味着在你的代码中找不到print函数的声明。这通常是因为你没有包含<stdio.h>头文件导致的。stdio.h是C语言中的标准输入输出库,它包含了print函数的声明。你需要在你的代码中添加#include <stdio.h>来解决这个问题。
以下是一个示例代码:
```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
```
这个代码中包含了<stdio.h>头文件,并使用了print函数来输出"Hello, World!"。通过包含<stdio.h>头文件,你就可以在代码中使用print函数了。
阅读全文