C Declare Constant Array Of Zero

There are some caveats to this: First, if we initialize only the first part of an array, the remaining elements are initialized to zero. For example, the declaration float six_week_grade[ 5 ] = { 98 , 87.5 }; has the exact same effect as float six_week_grade[ 5 ] = { 98 , 87.5 , 0 , 0 , 0 }; The second caveat: If you initialize an array when it ... ................
................