home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume11 / jotto / part01 / answer.c next >
C/C++ Source or Header  |  1990-12-11  |  106b  |  11 lines

  1. /*
  2.  *    answer
  3.  */
  4.  
  5. answer(w, n)
  6. char *w;
  7. int n;
  8. {
  9.     printf(" %s has %d letter%s\n", w, n, n==1? "": "s");
  10. }
  11.