InterviewSolution
Saved Bookmarks
| 1. |
What do all STL containers define?(a) Iterator types(b) Begin methods(c) End methods(d) All of the mentioned |
|
Answer» Correct answer is (d) All of the mentioned Easy explanation - All the STL containers define the iterator types for that container, e.g., iterator and const_iterator, e.g., vector::iterator and the begin/end methods for that container, e.g., begin() and end(). |
|