what is a pragma in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages/disadvantages of using inline and const?
When must you use a constructor initializer list?
How to delete array of objects in C++? Proof by C++ code for proper deletion
Consider the following C++ program
What are the different scope C++ provide ?
How do you write a function that can reverse a linked-list in C++?
Explain the difference between method overriding and method overloading in C++?
Discuss about iteration statements in C++ .
What is placement new?
In C++ what is a vtable and how does it work?
What is the difference between virtual functions and pure virtual functions?
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?