CONFCOPY.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    FILE *input, *output;
  5.    int letter;
  6.    if ((input = fopen("\CONFIG.SYS", "r")) == NULL)
  7.      printf("Error opening \CONFIG.SYSn");
  8.    else if ((output = fopen("\CONFIG.TST", "w")) == NULL)
  9.      printf("Error opening \CONFIG.TSTn");
  10.    else
  11.      { 
  12.        // Read and write each character in the file
  13.        while ((letter = fgetc(input)) != EOF)
  14.          fputc(letter, output);
  15.        fclose(input);     // Close the input file
  16.        fclose(output);    // Close the output file
  17.      }
  18.  }