std::vector<int> vect;
vect.erase(vect.begin());
// Deletes the first element from vector v
v.erase(v.begin());
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int> nums;
nums.push_back(6);
nums.push_back(2);
nums.push_back(7);
nums.push_back(1);
nums.erase(nums.begin());
for (int num: nums)
cout << num << endl;
}
Code Example |
---|
Cpp :: c++ custom comparator for elements in set |
:: how to take user input in a client server program in c++ |
Cpp :: |
Cpp :: input output c++ |
:: |
Cpp :: qt remove resize handle |
Cpp :: master header file c++ |
:: |
:: |
Cpp :: search update delete files in c++ |
Cpp :: collections c# vs c++ |
Cpp :: C++ Fahrenheit to Celsius |
Cpp :: precision of fixed in c++ |
Cpp :: how to make a sqlite3 object in cpp |
Cpp :: |
Cpp :: how to output to console c++ |
Cpp :: c++ display numbers as binary |
:: qt float to qstring |
Cpp :: __lg(x) in c++ |
Cpp :: c++ main environment variables |
Cpp :: |
Cpp :: convert string to char c++ |
Cpp :: c++ main function |
Cpp :: c++ char array to int |
Cpp :: |
Cpp :: pow in c++ |
Cpp :: vector to string c++ |
Cpp :: sort vector in descending order |
Cpp :: substring to int c++ |
Cpp :: |