pop_front( ) function in List

Suman Barik
0

// CPP program to illustrate

// pop_front() function

#include <iostream>

#include <list>

using namespace std;


int main()

{

list<int> mylist{ 1, 2, 3, 4, 5 };

mylist.pop_front();


// list becomes 2, 3, 4, 5


for (auto it = mylist.begin(); it != mylist.end(); ++it)

cout << ' ' << *it;

}


Tags

Post a Comment

0Comments
Post a Comment (0)