Hello, I've just written a CPP program that reads integers from a
binary file, and used this code
while (my_ifstram.rea d( (char* ) &number, sizeof(int))
{
// do something with number
}
My question is now, where can I find a manual that describes what
the read method does with the ifstream object?
I'm sitting here with my Linux/Debian machine, but I have not found any
manual for that in the system.
The assumption that while returns something usefull as long as I can read
the file seems reasonable, but I wouldn't mind having documentation that is
off-line readable.
Where can I find that?
/G++
binary file, and used this code
while (my_ifstram.rea d( (char* ) &number, sizeof(int))
{
// do something with number
}
My question is now, where can I find a manual that describes what
the read method does with the ifstream object?
I'm sitting here with my Linux/Debian machine, but I have not found any
manual for that in the system.
The assumption that while returns something usefull as long as I can read
the file seems reasonable, but I wouldn't mind having documentation that is
off-line readable.
Where can I find that?
/G++
Comment