/* Lecture 3 Example 1 - counting to zero Peter Brusilovsky 9/12/00 */ #include #define HOW_MANY 5 main() { int counter = HOW_MANY; /* setting the counter */ printf("Start counting...\n"); while (counter >= 0) { printf("%d\n" , counter); counter--; } printf("Fire!\n"); }