|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- #include <stdio.h>
- #include <stdlib.h>
- void main()
- {
- FILE *f_pic, *f_file, *f_finish;
- char filename1[20], filename2[20], filename3[20], ch;
- printf("请输入图片名: ");
- scanf("%s", filename1);
- printf("请输入文件名: ");
- scanf("%s", filename2);
- printf("请输入合成文件的名称: ");
- scanf("%s", filename3);
- if( !(f_pic = fopen(filename1, "rb")) )
- {
- printf("Cannot open the file %s", f_pic);
- return;
- }
- if( !(f_file = fopen(filename2, "rb")) )
- {
- printf("Cannot open the file %s", f_file);
- return;
- }
- if( !(f_finish = fopen(filename3, "wb")) )
- {
- printf("Cannot open the file %s", f_finish);
- 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");
- }
复制代码 |
|