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 |
How the programmer of a class should decide whether to declare member function or a friend function?
What do you mean by friend class & friend function in c++?
What is the array and initializing arrays in c++?
What is the difference between C and CPP?
Explain what are mutator methods in c++?
What is the difference between global variables and static varables?
daily Routine of father
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
Explain the difference between 'operator new' and the 'new' operator?
How the virtual functions maintain the call up?
What do you mean by “this” pointer?
What is decltype c++?