file copying

file copying

  1 #include <stdio.h>
  2 
  3  void main()
  4 {
  5          char c;
  6 
  7          while((c = getchar()) != EOF)
  8         {
  9                 putchar(c);
 10         }
 11 
 12 }    

你可能感兴趣的:(file copying)