Please Disable Your Ad Blocker if it is Enabled!
A large part of our income is from ads. Please disable your adblocker to keep this site free for everyone.
C++ Program to read from a text file and then write in another text file
Program #include<fstream.h> void main() { ofstream fout(“sare1.txt”); //create a file to write ifstream fin(“sare1.txt”); fout<<“Hello….!!”; fout.close(); ...