Hi,
I've just joined this website for help with some C++ problems. I am new to C++ and face the task of reading from a text file and outputing the result in another text file using the istream& operator >>(istream& stream, storage &s)
it looks like something underneath:
istream& operator >>(istream& stream, storage &s)
{
...
}
The text file consist of integers and it needs to be read in the other it is placed in the original file.
Any help will be welcome.