0
How Delete array of object like b[students]
I've created an c++ project and I want add a remove student to my project and I don't know how ? I used array class in the project .
3 Réponses
+ 5
You can just shift all the elements ahead of the element (that you want to delete) one place before and then decrease the size of it by one.
+ 2
It seems element removal is not supported in std::array (cmiiw), you meant std::array when you wrote "array class" right?
Look at std::vector if you want support for element removal.
+ 1
Ok Thanks bro💚