View Single Post
  #7 (permalink)  
Old March 30th, 2004, 02:09 PM
davekw7x davekw7x is offline
Authorized User
 
Join Date: Feb 2004
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
Default

A note: The reason that I originally thought that you are dealing
with a binary file is that you opened it with
Code:
    fstream obj1("login.txt",ios::in|ios::binary);
Why, since this is not a binary file? It won't do any harm here,
but is misleading to future code maintainers. (And this should
be a consideration for all programs.)

Dave
Reply With Quote