库函数的文件拷贝
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char **argv)
{
FILE *from_fd;
FILE *to_fd;
char ch;
if(argc != 3)
{
printf("Usage:%s need from and to file!\n",argv[0]);
exit(-1);
}
if((from_fd = fopen(argv[1],"r")) == NULL)
{
printf("Cannot open file strike any key exit!\n");
exit(-1);
}
if((to_fd = fopen(argv[2],"w")) == NULL)
{
printf("Cannot open file strike any key exit!\n");
exit(-1);
}
ch = fgetc(from_fd);
while(ch != EOF)
{
fputc(ch,to_fd);
ch = fgetc(from_fd);
}
fclose(to_fd);
fclose(from_fd);
return 0;
}
手动创建两个文本文件text1.txt,text2.txt,要求编程创建text3.txt,实现text1.txt和text2.txt文件中除去首行和末尾对应的数据相加,三个文本的内容如上
text1.txt
begin
10 11 12
20 21 22
30 31 32
end
text2.txt
begin
15 16 17
25 26 27
35 36 37
end
text3.txt
begin
25 27 29
45 47 49
65 67 69
end
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *from1_fd;
FILE *from2_fd;
FILE *to_fd;
char ch1,ch2,ch3;
if((from1_fd = fopen("txt1.txt","r")) == NULL)
{
printf("from1_fd open error!\n");
exit(-1);
}
if((from2_fd = fopen("txt2.txt","r")) == NULL)
{
printf("from2_fd open error!\n");
exit(-1);
}
if((to_fd = fopen("txt3.txt","w")) == NULL)
{
printf("to_fd open error!\n");
exit(-1);
}
ch1 = fgetc(from1_fd);
ch2 = fgetc(from2_fd);
while(ch1 != EOF && ch2 != EOF)
{
if((ch1 < '0' || ch1 > '9') && (ch2 < '0' || ch2 > '9'))
{
fputc(ch1,to_fd);
}
else
{
ch3 = ch1 + ch2 - '0';
fputc(ch3,to_fd);
}
ch1 = fgetc(from1_fd);
ch2 = fgetc(from2_fd);
}
fclose(from1_fd);
fclose(from2_fd);
fclose(to_fd);
return 0;
}