Write a ‘c’ program to concatenate two-text file from a specified location.
Answers
Answered by
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