As in, should the operator>> match the operator<< ?
Database Example:
If the operator>> reads in something of the following format:
2
Joe 500 20 1
Bob 250 30 0
should the operator<< output that? Or something like this:
Record: 1/2
Name: Joe
Balance: 500
Transactions: 20
Premium Account: Yes
And then have a separate writeFile() function?
I know either would work, but what is the "accepted standard"?