- An array is an indexed data structure that stores a collection of variables of the same data type.
- Individual variables within an array are called elements and are accessed using the array name and index.
- Arrays are declared with the data type, array name, and size. For example, int list[10] declares an array called list that can hold 10 integer elements.
- Elements can be initialized when the array is declared or assigned values later using a for loop. Arrays can also be passed as arguments to functions.