Q. Write a program to copy a file into another file?
/* ###########################
Girfa : Student Help
for more program visit :
http://girfahelp.blogspot.in/p/c-language.html
copy a file content to another file
############################
*/
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *sfile,*dfile;
char ch;
int flag=1;
clrscr();
sfile=fopen("source.txt","r"); /*
Source file */
if(sfile==NULL)