Social Sciences, asked by vedu1708, 2 months ago

write a c program to copy the contents of one file into another excluding the words a,an and the.​

Answers

Answered by study12345677890
4

Explanation:

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);

Similar questions