home *** CD-ROM | disk | FTP | other *** search
/ The Education Master 1994 (4th Edition) / EDUCATIONS_MASTER_4TH_EDITION.bin / files / progmisc / ovl312 / ovl312.arc / HORSE.C < prev    next >
Text File  |  1988-02-18  |  119b  |  12 lines

  1. horse_noise()
  2. {
  3.     printf(" goes neigh");
  4. }
  5.  
  6. horse(int i)
  7. {
  8.     printf("\nhorse");
  9.     if(i==9)
  10.         horse_noise();
  11. }
  12.