Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Removing an element from C++ std::vector<> by index?
Remove an element from C++ std::vector<> by index can be done by following way −
Example
#include<iostream>
#include<vector>
using namespace std;
int main() {
vector<int> v; //declare vector
//insert elements into vector
v.push_back(-10);
v.push_back(7);
v.push_back(6);
// Deletes the first element (v[0])
v.erase(v.begin() );
for (int i = 0; i < v.size(); i++)
cout << v[i] << " ";
}
Output
7 6
Advertisements