How do I open binary files?
Answer / guest
do a bitwise or of the file open mode with ios::binary, as in:
ifstream mystream( "filename.ext", ios::in | ios::binary );
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the different types of polymorphism in c++?
What can I use instead of namespace std?
What is the difference between Class and Structure?
40 Answers HP, IBM, Samsung, TCS,
What's the "software peter principle”?
What is object slicing and how can we prevent it?
Friend functions can access private and protected members of a class.
Carry out conversion of one object of user-defined type to another?
Explain terminate() and unexpected() function?
What is atoi?
How to access a variable of the structure?
What is a driver program?
What is buffering in c++?