What are the manipulators in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Why use of template is better than a base class?

0 Answers  


Ask to write virtual base class code?

0 Answers   Satyam,


What is a manipulator in c++?

0 Answers  


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

4 Answers   Quark,


Why pointer is used in c++?

0 Answers  






What is the full form of c++?

0 Answers  


explain the reference variable in c++?

0 Answers  


What is a far pointer? where we use it?

0 Answers  


What is oop in c++?

0 Answers  


Is empty stack c++?

0 Answers  


What is private public protected in c++?

0 Answers  


How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?

0 Answers  


Categories