/* * Author: D. Sheets * Description: Array loop example program with #define */ #include #define SIZE 6 int main() { int count; int array[SIZE] = { 12, 13, 14, 22, 24, 25 }; /* Print out all elements */ for (count=0; count