// Deletes the second element (vec[1]) vec.erase(vec.begin() + 1); // Deletes the second through third elements (vec[1], vec[2]) vec.erase(vec.begin() + 1, vec.begin() + 3);