What is wrong with this statement? std::auto_ptr ptr(new char[10]);
No Answer is Posted For this Question
Be the First to Post Answer
Is deconstructor overloading possible? If yes then explain and if no Then why?
Explain encapsulation in C++.
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-; } }
Is there a difference between class and struct?
What are the advantages and disadvantages of B-star trees over Binary trees?
How can a C function be called in a C++ program?
Define namespace.
Explain about Searching and sorting algorithms with complexities
In C++ what is a vtable and how does it work?
Explain function prototypes in C++.
How to input string in C++
What does malloc return in C and C++?