push_back( ) function in List

Suman Barik
0

// CPP program to illustrate

// push_back() function

#include <iostream>

#include <list>

using namespace std;


int main()

{

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

mylist.push_back(6);


// list becomes 1, 2, 3, 4, 5, 6


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

cout << ' ' << *it;

}


Tags

Post a Comment

0Comments
Post a Comment (0)