int buffer1[10] memset(buffer1,0,sizeof(buffer1)); 显示错误 C++ requires a type specifier for all declarations
时间: 2023-11-27 20:52:26 浏览: 103
C++类的sizeof1
这个错误可能是因为你的代码没有指定变量的类型。在C++中,所有的变量必须在声明时指定其类型,否则编译器无法识别它们。请修改你的代码,像这样指定类型:
```
int buffer1[10];
memset(buffer1, 0, sizeof(buffer1));
```
这样就可以正确声明一个名为`buffer1`的整型数组,然后使用`memset`函数将其初始化为0。
阅读全文