What are iterators in c++?


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

Post New Answer

More C++ General Interview Questions

class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


C is to C++ as 1 is to a) What the heck b) 2 c) 10

0 Answers  


What is the basic structure of c++ program?

0 Answers  


Why do we use string in c++?

0 Answers  


Write a program to get the value of sin (x) using a library function , when x is given in degrees.

1 Answers  






What is the difference between "calloc" and "malloc"?

9 Answers   ADP,


What is the header file for setw?

0 Answers  


What do you mean by inheritance in c++?

0 Answers  


What's the order in which the local objects are destructed?

0 Answers  


What is null and void pointer?

0 Answers  


Why do we use vector in c++?

0 Answers  


Explain the benefits of proper inheritance.

0 Answers  


Categories