-1

C++でintの配列をゼロで初期化する最速の方法は何ですか?

int plus_number[CA - 1];
for (int & i : plus_number) {
    i = 0;
}

また

int plus_number[CA - 1] = {0};

それとも別の方法がありますか?

4

2 に答える 2