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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(int argc, char **argv)
  3.  {
  4.    FILE *input, *output;
  5.    char string[256];
  6.    if ((input = fopen(argv[1], "r")) == NULL)
  7.      printf("Error opening %sn", argv[1]); 
  8.    else if ((output = fopen(argv[2], "w")) == NULL)
  9.      {
  10.        printf("Error opening %sn", argv[2]);
  11.        fclose(input);
  12.      }
  13.    else 
  14.      {
  15.        while (fgets(string, sizeof(string), input))
  16.          fputs(string, output);
  17.        fclose(input);
  18.        fclose(output);
  19.      }
  20.  }