Write a c program to append the content of one file at the end of another file

#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp1,*fp2;
char ch,fname1[20],fname2[20];
printf("\n enter sourse file name");
gets(fname1);
printf("\n enter sourse file name");
gets(fname2);
fp1=fopen(fname1,"r");
fp2=fopen(fname2,"a");
if(fp1==NULL||fp2==NULL)
{
printf("unable to open");
exit(0);
}
do
{
ch=fgetc(fp1);
fputc(ch,fp2);
}
while(ch!=EOF);
fcloseall();
}

Comments

  1. Yes this site is very good for programmer.
    some program are written about file operation using c/c++ language you may follow the link.

    http://www.secufoon.com/category/educational-activity/programming/

    ReplyDelete

Post a Comment