c++二维数组初始化为0
时间: 2024-04-24 18:23:28 浏览: 192
你可以使用以下方法来将C++二维数组初始化为0:
```cpp
#include <iostream>
using namespace std;
int main() {
const int rows = 3;
const int cols = 4;
// 声明二维数组并初始化为0
int arr[rows][cols] = {0};
// 输出二维数组的元素
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
cout << arr[i][j] << " ";
}
cout << endl;
}
return 0;
}
```
在上述示例中,我们声明了一个3行4列的二维数组`arr`,并使用`{0}`初始化所有元素为0。然后,我们使用嵌套循环遍历并输出数组的所有元素。
输出结果为:
```
0 0 0 0
0 0 0 0
0 0 0 0
```
这样就完成了将二维数组初始化为0的操作。
阅读全文