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

将开发过程中较好的内容做个收藏,下边代码内容是关于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;
}





 

posted @ 2021-11-26 00:06  lpyg  阅读(180)  评论(0编辑  收藏  举报