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

What is purpose of abstract class?

0 Answers  


How can you quickly find the number of elements stored in a a) static array b) dynamic array ?

5 Answers   Lucent,


What would happen on forgetting [], while deallocating an array through new?

0 Answers  


What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?

0 Answers  


What do you understand by pure virtual function? Write about its use?

0 Answers  


How many types of classes are there in c++?

0 Answers  


What is data type in c++?

0 Answers  


Explain data encapsulation?

0 Answers  


What is a manipulator in c++?

0 Answers  


Where is atoi defined?

0 Answers  


What are the vectors in c++?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Categories