fork download
  1. #include <stdio.h>
  2.  
  3. /* подсчет вводимых символов; 1-я версия */
  4.  
  5. main()
  6.  
  7. {
  8.  
  9. long nc;
  10.  
  11. nc = 0;
  12.  
  13. while (getchar() != EOF)
  14.  
  15. ++nc;
  16.  
  17. +printf("%ld\n", nc);
  18.  
  19. }
  20.  
  21.  
Success #stdin #stdout 0.01s 5392KB
stdin
Standard input is empty
stdout
0