1、源程序
#include "stdio.h"
#include "stdlib.h"
int fun(char *source,char *target)
{
FILE *fs,*ft;
char ch;
if((fs=fopen(source,"r"))==NULL)
return 0;
if((ft=fopen(target,"w"))==NULL)
return 0;
printf("\nthe date in file\n");
ch=fgetc(fs);
while(!feof(fs))
{
putchar(ch);
fputc(ch,ft);
ch=fgetc(fs);
}//while
fclose(fs);
fclose(ft);
printf("\n\n");
return 1;
}//fun
int main()
{
char sfname[20]="c:\\m1.txt",tfname[20]="c:\\m2.txt";
FILE *my;
int i;
char c;
my=fopen(sfname,"w+");
printf("the original data:\n");
for(i=1;i<30;i++)
{
c='A'+rand()%111111;
fprintf(my,"%c",c);
printf("%c",c);
}//for
fclose(my);
printf("\n");
if(fun(sfname,tfname)) printf("Succed!");
else printf("Fail");
}//main
2、温习一下文件。
printf及fprintf的应用。
2、文件操作(复制,输出)
最新推荐文章于 2022-12-11 23:03:55 发布