It is not necessarily to completely initialize an entire array.
int integer[500] = {500, 200 ,300};
As the above case, the remaining values in the array will automatically set to zero if you initialized only the portion of array.
It is not necessarily to completely initialize an entire array.
int integer[500] = {500, 200 ,300};
As the above case, the remaining values in the array will automatically set to zero if you initialized only the portion of array.