What is a far pointer? where we use it?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of ::(scope resolution operator)?
What is a unnitialised pointer?
What are the vectors in c++?
Why do we use setw in c++?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
What's the order in which the objects in an array are destructed?
What is object slicing and how can we prevent it?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
Write about an iterator class?
an integer constant must have atleast one a) character b) digit c) decimal point
Do class declarations end with a semicolon? Do class method definitions?
What are the different types of polymorphism?