C Declare Constant Array Of Zero

ints will have the values specified in the initialization list. What about the other two ints in the array? They will be set to zero! That’s right, when you use a partial initialization list, the unspecified array elements are going to have all of the bits cleared, setting them to zero, that’s defined in the C/C++ language standard. ................
................