/********************************************************* * From C PROGRAMMING: A MODERN APPROACH, Second Edition * * By K. N. King * * Copyright (c) 2008, 1996 W. W. Norton & Company, Inc. * * All rights reserved. * * This program may be freely distributed for class use, * * provided that this copyright notice is retained. * *********************************************************/ /* countdown.c (Chapter 9, page 186) */ /* Prints a countdown */ #include void print_count(int n) { printf("T minus %d and counting\n", n); } int main(void) { int i; for (i = 10; i > 0; --i) print_count(i); return 0; }