Computer Science, asked by harivermasharma3058, 2 days ago

Write a ‘c’ program to concatenate two-text file from a specified location.

Answers

Answered by XxitzKing02xX
29

c program to merge two files:

  • #include<stdio.h>
  • #include<conio.h>
  • #include<stdlib.h>
  • FILE *fs1, *fs2, *ft;
  • char ch, file1[20], file2[20], file3[20];
  • printf("Enter name of first file ");
  • gets(file1);
  • printf("Enter name of second file ");

Similar questions