123456
const std::size_t ARRAY_SZ = 50 ; using array_type = int[ARRAY_SZ] ; // type alias for array of ARRAY_SZ int // create one hundred arrays const std::size_t NUM_ARRAYS = 100 ; array_type many_arrays[NUM_ARRAYS] = {} ; // initialised to all zeroes