f 1.datというファイルをf 2.datというファイルにコピーする
f 1.datというファイルを、f 2.datというファイルにコピーしてください.
#include
#include
int main()
{
FILE *fpin,*fpout;
char ch;
if((fpin=fopen("f1.dat","r"))==NULL)
{
printf("file can not open!");
exit(0);
}
if((fpout=fopen("f2.dat","w"))==NULL)
{
printf("file can not open!");
exit(0);
}
while((ch=fgetc(fpin))!=EOF)
{
fputc(ch,fpout);
}
fclose(fpin);
fclose(fpout);
return 0;
}