C++ Program to read from a text file and than write in another text file
#include<fstream.h> void main(){ ofstream fout(“sare1.txt”); //create a file to writeifstream fin(“sare1.txt”);fout<<“Hello….!!”;fout.close(); //closing the file fout.open(“sare2.txt”); //create file to writechar ch;while(fin) //loop wiill run till end of file{fin>>ch; //reading data from filefout<<ch; //writing data to file}fin.close();fout.close();}/*you can …
C++ Program to read from a text file and than write in another text file Read More »
