Lesson 09: Structures

introduced the array that allows you to group elements of the same type into a single logical entity. To access elements in an array, all that is necessary is that the array's name is given together with the appropriate index value.

The C/C++ language provides another method for grouping elements together. This falls under the name of structures and forms the basis for the discussions in this lesson.