📜  cpp 数组初始值 - C++ 代码示例

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

代码示例1
int array[100] = {-1}; // set first elem to -1 and the rest to 0
int array[100] = {0}; // set all to 0
int array[100] = {[0 ... 99]=-1}; // set the 0 to 99 (all) elements to -1