When must you use a constructor initializer list?
No Answer is Posted For this Question
Be the First to Post Answer
What is static variable and difference between(const char *p,char const *p,const char* const p).
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
How to stop class inheritance in C++ with condition that object creation should be allowed
Implement a 2D bit-matrix representing monochrome pixels which will have only OFF/ON values and will take on an average only one bit of memory for each stored bit. How to perform various operations on it?
Define type casting in C++.
What are string library functions(syntax).
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
How to reverse a string in C++
How to input string in C++
What is RTTI and why do you need it?
what do you mean by exception handling in C++?
What is the difference between realloc() and free() in C++?