美文网首页
C语言基础:文件拷贝的代码

C语言基础:文件拷贝的代码

作者: 22334 | 来源:发表于2021-11-16 21:24 被阅读0次

    将开发过程中较好的内容做个收藏,下边代码内容是关于C语言基础:文件拷贝的代码。

    #include <stdio.h>

    int main(void)

    {

      int letter;

      if ((input = fopen("\CONFIG.SYS", "r")) == NULL)

        printf("Error opening \CONFIG.SYSn");

      else if ((output = fopen("\CONFIG.TST", "w")) == NULL)

        printf("Error opening \CONFIG.TSTn");

      else

        {

          while ((letter = fgetc(input)) != EOF)

            fputc(letter, output);

        }

    return 1;

    }

    相关文章

      网友评论

          本文标题:C语言基础:文件拷贝的代码

          本文链接:https://www.haomeiwen.com/subject/aqlktrtx.html