When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
No Answer is Posted For this Question
Be the First to Post Answer
How many lines of code you have written for a single program?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
What are the five basic elements of a c++ program?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is the difference between C and CPP?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
What does the nocreate and noreplace flag ensure when they are used for opening a file?
What is Object Oriented programming.what is the difference between C++ and C?
What is the difference between Char a[ ]=”string” and char *a=”String”
Which is better turbo c++ or dev c++?
what is c++
Using a smart pointer can we iterate through a container?