struct Information {
ifstream* in;
ofstream* out;
...
};
.....
((*info).in)->eof() //this one
(*(*info).in).eof() // and this one
so, info is a Information struct, is there any different between the two shown above? my guess is they are the same. and what is "->" and "." called?