What are the manipulators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Why use of template is better than a base class?
Ask to write virtual base class code?
What is a manipulator 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
Why pointer is used in c++?
What is the full form of c++?
explain the reference variable in c++?
What is a far pointer? where we use it?
What is oop in c++?
Is empty stack c++?
What is private public protected in c++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?