home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07120b < prev    next >
Text File  |  1991-05-09  |  292b  |  17 lines

  1. int main()
  2.     {
  3.     char word[MAXWORD];
  4.     unsigned lineno = 1;
  5.     xrt x;
  6.  
  7.     while (getword(word, MAXWORD) != EOF)
  8.         if (isalpha(word[0]))
  9.             x.add(word, lineno);
  10.         else if (word[0] == '\n')
  11.             ++lineno;
  12.     x.print();
  13.     return 0;
  14.     }
  15.  
  16.  
  17.