InterviewSolution
Saved Bookmarks
| 1. |
What does the checked iterator allow you to find?(a) Warnings(b) Compile time error(c) Run time error(d) Warnings & Run time errorThe question was asked in an interview.My query is from Checked Iterators topic in portion Algorithms, Objects & Iterators in C++ of C++ |
|
Answer» RIGHT choice is (C) RUN time ERROR Explanation: Checked iterator allow you to FIND Run time error. |
|