What is a far pointer? where we use it?


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

Post New Answer

More C++ General Interview Questions

What is the use of ::(scope resolution operator)?

0 Answers  


What is a unnitialised pointer?

0 Answers  


What are the vectors in c++?

0 Answers  


Why do we use setw in c++?

0 Answers  


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?

0 Answers  






What's the order in which the objects in an array are destructed?

0 Answers  


What is object slicing and how can we prevent it?

2 Answers   Tech Mahindra,


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.

5 Answers   Quark,


Write about an iterator class?

0 Answers  


an integer constant must have atleast one a) character b) digit c) decimal point

0 Answers  


Do class declarations end with a semicolon? Do class method definitions?

0 Answers  


What are the different types of polymorphism?

3 Answers  


Categories