How to copy from one text file to another text file? Here my current progress.. it just copy the last line of the source file :(
ifstream stream1("c:\\source.txt");
char a[512];
while(!stream1.eof())
{
stream1 >> a;
}
ofstream myfile;
myfile.open ("c:\\destination.txt");
myfile << a;
myfile.close();