|
发表于 2020-4-20 13:14:55
From FishC Mobile
|
显示全部楼层
|阅读模式
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#include <stdio.h>
#include <stdlib.h>
void main()
{
FILE *in,*out,*xt;
char ch,infname[10],outfname[10],filename[10];
printf("输入要合成的图片的名字\n");
scanf("%s",infname);
getchar();
printf("输入要合成的文件名\n");
scanf("%s",outfname);
getchar();
printf("输入要合成的文件名\n");
scanf("%s",filename);
getchar();
if((in=fopen(infname,"rb"))==NULL)
{
printf("inputfiel error\n");
exit(0);
}
if((out=fopen(outfname,"rb"))==NULL)
{
printf("outpufile error");
exit(0);
}
xt=fopen(filename,"wab");
ch=fgetc(in);
while(!feof(in))
{
fputc(ch,xt);
ch=fgetc(in);
}
fclose(in);
ch=fgetc(out);
while(!feof(out))
{
fputc(ch,xt);
ch=fgetc(out);
}
fclose(out);
fclose(xt);
} |
|