Why was c++ created?
No Answer is Posted For this Question
Be the First to Post Answer
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
Do class method definitions?
What are the advantages of inheritance in c++?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
Is c++ still in demand?
What is a singleton class c++?
When should we use container classes instead of arrays?
What is friend class in c++ with example?
What do you mean by storage classes?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
The "virtual" specifier in a member function enables which one of the following? a) Monmorphism b) Late binding c) Metamorphism d) Solomorphism e) Inheritance