11. vectorname.erase(position)
22. vectorname.erase(startingposition, endingposition)
3Parameters :
4Position of the element to be removed in the form of iterator.
5or the range specified using start and end iterator.
6Result :
7Elements are removed from the specified
8position of the container.