5.7: Arrays
5.7.1: Introduction to Arrays
Read this chapter, which introduces arrays, a common data structure that is used to store data of same type.
5.7.2: Common Array Algorithms
Read this chapter, which discusses how a for loop can used to iterate over the elements of an array. In addition, it also discusses enhanced for loop. The chapter demonstrates use of arrays to solve common problems such as finding sum, average, maximum, and minimum values of numbers stored in array. Please pay attention to some of the common programing errors one can make while using arrays.