character counting

character counting

  1 #include <stdio.h>
  2 
  3  void main()
  4 {
  5          int nc;
  6 
  7         nc = 0;
  8          while(getchar() != EOF)
  9         {
 10                 nc++;
 11         }
 12         printf("%d\n",nc);
 13 }

你可能感兴趣的:(character counting)