For any STL container that I\'m using, if I declare an iterator (of this particular container type) using the iterator\'s default constructor, what will the iterator be init
The iterator is not initialized, just as int x; declares an integer which isn't initialized. It does not have a properly defined value.
int x;