Explain what are mutator methods in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of pointer ? Also size of pointer in 64 bit pointer
What do you mean by late binding?
What is "map" in STL?
What is input operator in c++?
What are smart pointer? Whats its use?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What is anonymous object in c++?
Do we have to use initialization list in spite of the assignment in constructors?
What is the use of turbo c++?
Write about c++ storage classes?
What are the advantages of pointers?
What is implicit conversion/coercion in c++?