Write a C program to copy the content of one text file into another 5. file.
Answers
Answered by
1
Copy one file to another file in C
#include <stdio.h>
#include <stdlib.h>
main()
{
char ch, source_file[20], target_file[20];
FILE *source, *target;
printf("Enter name of file to copy\n");
gets(source_file);
More items...
Similar questions
Computer Science,
6 months ago
Math,
6 months ago
English,
6 months ago
Business Studies,
1 year ago
Business Studies,
1 year ago
Computer Science,
1 year ago
Economy,
1 year ago