|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
跟着视频写了一个“图片文件合成器”,满怀着激动的心情准备运行试验一下,结果出现如下图错误(cannot open the picture b)。求解为什么会出现这样的错误,不胜感激!跪谢!!
#include<stdio.h>
#include<stdlib.h>
void main()
{
FILE *f_pic,*f_file,*f_finish;
char ch,pic_name[10],file_name[10],finish_name[10];
printf("请输入图片和文件的名称\n");
printf("图片:");
scanf("%s",pic_name);
printf("文件:");
scanf("%s",file_name);
printf("生成为:");
scanf("%s",finish_name);
if(!(f_pic=fopen(pic_name,"rb")))
{
printf("cannot open the picture %s",pic_name);
return;
}
while(!(feof(f_pic)))
{
ch=fgetc(f_pic);
fputc(ch,f_finish);
}
fclose(f_pic);
while(!(feof(f_file)))
{
ch=fgetc(f_file);
fputc(ch,f_finish);
}
fclose(f_file);
fclose(f_finish);
system("pause");
}
|
|