home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / 1107103a < prev    next >
Text File  |  1993-05-04  |  302b  |  21 lines

  1. // wc.cpp: Display word count
  2. #include <iostream.h>
  3. #include <stddef.h>
  4.  
  5. main()
  6. {
  7.     const size_t BUFSIZ = 128;
  8.     char s[BUFSIZ];
  9.     size_t wc = 0;
  10.     
  11.     while (cin >> s)
  12.         ++wc;
  13.  
  14.     cout << wc << '\n';
  15.     return 0;
  16. }
  17.  
  18. // Output from the command "wc < wc.cpp"
  19. // 35
  20.  
  21.