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 |
Explain working of printf?
Write a Program for find and replace a character in a string.
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
what Is DCS ? what i will get benefit when i did?
Describe the main characteristics of static functions?
What is data structure in c++?
Write a program which uses functions like strcmp(), strcpy()? etc
What are the two shift operators and what are their functions?
What are virtual functions and what is its use?
Tell me difference between constant pointer and pointer to a constant.
What is null pointer and void pointer?
Can we use this pointer inside static member function?