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 comments allowed in c++?
What is the difference between a class and a structure in C++?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What is &x in c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is setiosflags c++?
How the virtual functions maintain the call up?
Is there any difference between int [] a and int a [] in c++?
What is vector processing?
What is the difference between static link library and dynamic link library?
What is an undefined behavior and sequence points
which of the following is not an secondary constant a) array b) real c) union