What is an array? An array is one or more data objects of the same type positioned next to each other in memory. Once declared, the array size is fixed, we cannot add nor remove elements to and from the array. The array itself is also a type.
9.1 Declaration
The number 5 in the square brackets [] says how many array elements there are. We declared an array of ...