Lesson 12: One-dimensional arrays
So far each variable held a single value. An array is a row of cells of the same type under one name: int grades[5]; reserves five consecutive int cells in memory. Each cell is accessed by an index that starts at 0 — the first cell is grades[0] and the last is grades[4]. With a for loop and a size c