Business Studies, asked by ronaksahu6475, 1 year ago

Write a C program to copy the content of one text file into another 5. file.

Answers

Answered by shivanshusingh97
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