home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 03dos / cp.c next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  164 b   |  15 lines

  1. /*
  2.  *    cp -- a simplified copy command
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. main()
  8. {
  9.     int ch;
  10.  
  11.     while ((ch = getc(stdin)) != EOF)
  12.         putc(ch, stdout);
  13.     exit(0);
  14. }
  15.