home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / FPUTC.C < prev    next >
Encoding:
Text File  |  1984-12-12  |  555 b   |  30 lines

  1. /* simple file copier with console echo */
  2. /* demonstrates fgetc() and fputc() */
  3.  
  4. main()
  5. {
  6.     FILE *fi, *fo;
  7.     int c;
  8.     char source[25], dest[25];
  9.  
  10.     printf("Input filename: ");
  11.     gets(source);
  12.     printf("Output filename: ");
  13.     gets(dest);
  14.     if((fi = fopen(source, "r")) == NULL) {
  15.         printf("\tCan't open %s\n",source);
  16.         exit();
  17.     }
  18.     if((fo = fopen(dest, "w")) == NULL) {
  19.         printf("\tCan't open %s\n",dest);
  20.         exit();
  21.     }
  22.     while((c = fgetc(fi)) != EOF) {
  23.         putchar(c);
  24.         fputc(c, fo);
  25.     }
  26.     fclose(fi);
  27.     fclose(fo);
  28.     puts("\n{DONE}");
  29. }
  30.