Differentiate between an inspector and a mutator ?


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

Post New Answer

More C++ General Interview Questions

What is the difference between an enumeration and a set of pre-processor # defines?

0 Answers  


If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?

0 Answers  


What is meant by const_cast?

0 Answers  


Can I learn c++ in a week?

0 Answers  


What are the advantages of pointers?

0 Answers  






What language is a dll written in?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Can a function take variable length arguments, if yes, how?

0 Answers  


What are the c++ access specifiers?

1 Answers  


Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


What is runtime errors c++?

0 Answers  


Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?

0 Answers  


Categories