📜  初始化二维数组 c++ memset - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:51.756000             🧑  作者: Mango

代码示例1
int arr[10][20] = {0};  // easier way
// this does the same
memset(arr, 0, sizeof arr);