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

  1. sheep_noise()
  2. {
  3.     printf(" goes baaaa");
  4. }
  5.  
  6. sheep(int i)
  7. {
  8.     printf("\nsheep");
  9.     if(i==9)
  10.         sheep_noise();
  11. }
  12.