C语言文件。帮忙解下。
发布网友
发布时间:2022-04-27 09:08
我来回答
共4个回答
热心网友
时间:2023-09-16 20:06
#include<stdio.h>
main()
{
int c;
while((c=getchar())!=EOF)
putchar(c);
}
编译成copy0.exe
假设copy0.exe, 原txt.txt, 目的文件a.txt在同一文件夹下
在命令窗口切换到此文件夹,打入命令
copy0 <txt.txt >a.txt
热心网友
时间:2023-09-16 20:07
#include <stdio.h>
void main()
{
FILE * fpread;
FILE * fpwrite;
if ((fpread = fopen("txt.txt", "r")) == NULL)
{
printf("Cannot open txt.txt for reading!\n");
return;
}
if ((fpwrite = fopen("output.txt", "w")) == NULL)
{
printf("Cannot open output.txt for writing!\n");
return;
}
long num;
while (fscanf(fpread, "%d", &n) != EOF)
{
fprintf(fpwrite, "%d", n);//这一句你自己改,看你要干什么了
}
fclose(fpread);
fclose(fpwrite);
}
热心网友
时间:2023-09-16 20:07
?是复制吗?
还是一定要读?
热心网友
时间:2023-09-16 20:08
read,write