What is a memory leak in C++?
No Answer is Posted For this Question
Be the First to Post Answer
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
Explain about Searching and sorting algorithms with complexities
When would you choose to return an error code rather than throw an exception?
Explain why C++ is not purely Object Oriented Language
What are the fundamental features of an object-oriented language?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
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-; } }
When would you use a pointer? A reference?
How can you force the compiler to not generate them?
What is the 4 difference between delete[] and delete?
What is Advantage and Use of THIS pointer in C++ – Scenarios?
Write a program to input an integer from the keyboard and display on the screen “WELL DONE” that many times.