↧
Answer by Zan Lynx for How does c++ std::vector work?
The vector usually has three pointers. If the vector has never been used they are all 0, or NULL.One to the first element of the vector. (this is the begin() iterator)One to last element of the vector...
View Article