c++ arrays initializatize to 0? code example
Example 1: c++ initialize array with all zeros
int myArray[10] = { 0 }; // all elements 0
Example 2: initialize whole array to 0 c++
int nScores[100] = {0};
int myArray[10] = { 0 }; // all elements 0
int nScores[100] = {0};