|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
FILE *fp1,*fp2;
char str1[20],str2[20],c;
printf("Please input first file:");
scanf("%s",str1);
if(!(fp1=fopen(str1,"r")))
{
printf("open error!");
exit(0);
}
printf("Please input second filae:");
scanf("%s",str2);
if(!(fp2=fopen(str2,"a")))
{
printf("open error!");
exit(0);
}
while(!feof(fp1))
{
c=fgetc(fp1);
fputc(c,fp2);
}
fclose(fp1);
fclose(fp2);
return 0;
} |
|