write a c program to copy the contents of one file into another excluding the words a,an and the.
Answers
Answered by
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