Hello,

Say I have a vector of something called "vec" And I use this for loop to access the elements of vec

for(size_t i=0; i<vec.size(); i++)
{
}

How can I remove the element from the vector without an iterator?

Thanks!