// // Filename: pgm2_5a.cpp // // Description: Demonstration of for loops. // // ENSC 104: Digital Computer Programming // // Instructor: Dr. Walsh // // Section: 2 // // Date Created: 02/14/98 // Last Modified: 02/14/98 // // Name: N/A // #include #define COUNT 3 main() { cout << "\nFor loop with a post incrementer." <=1; --counter) { cout << "\tCounter = " << counter << endl; } cout << endl; cout << "\nFor loop with short hand notation." <