What is difference between array and vector in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain storage qualifiers in c++.
What is a modifier in c++?
Is C++ case sensitive a) False b) Depends on implementation c) True
How can we access protected and private members of a class?
Ask to write virtual base class code?
Explain the benefits of proper inheritance.
What is near, far and huge pointers? How many bytes are occupied by them?
What does override mean in c++?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
Explain how to initialize a const data member.
What is the use of 'using' declaration in c++?
What is the type of this pointer in c++?