Array Declarations
This declaration sets aside a chunk of memory that’s big enough to hold 5 integers.
It does not initialize those memory locations to 0 or any other value.
Initializing an array may be done with an array initializer, as in :
int array [5] = { 5, 2, 6, 9, 3 } ;