InterviewSolution
Saved Bookmarks
| 1. |
What do we return if we use simple array on a internal container?(a) Methods(b) Pointers(c) Objects(d) Values |
|
Answer» Correct option is (b) Pointers Best explanation: Pointers are legal iterators, so if your internal container is a simple C array, then all you need to do is return the pointers. |
|