What is the role of C++ shorthand's?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use using namespace std in c++?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
What is a linked list in c++?
What is Pure Virtual Function? Why and when it is used ?
Define a nested class. Explain how it can be useful.
What is the need of a destructor?
what you know about c++?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
What is conversion constructor?
What are vtable and vptr?
What are c++ data types?
What is a manipulative person?