InterviewSolution
Saved Bookmarks
| 1. |
How many iterators are needed for the defining a new container?(a) 1(b) 2(c) 3(d) 4 |
|
Answer» The correct choice is (c) 3 Best explanation: There are three main iterators needed for designing a container. They are const iterator, Reverse iterator and Iterator traits. |
|