Arrays
An array is a collection of elements of the same type.
Good programming practice: always define a new type of the array type needed in your application.
Example: This illustrates typedef and arrays:
typedef int MonthAray [NumDays];
Usage : MonthAray ThisMonth, NextMonth;