What is the 4 difference between delete[] and delete?
No Answer is Posted For this Question
Be the First to Post Answer
What is conversion constructor in C++
How to convert integer to string in C++
What does it mean to declare a member function as virtual in C++?
When would you choose to return an error code rather than throw an exception?
What is a constructor initializer list?
How to reverse a string in C++
What is the difference between creating an object, using 'new' and using 'malloc'?
What are the costs and benefits of using exceptions?
How does stack look in function calls? When does stack overflow? What can you do to remedy it?
Can we use THIS Pointer in static function – Reason in C++?
What are the advantages/disadvantages of using #define?
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?