back( ) function in List

Suman Barik
0

// CPP program to illustrate

// Implementation of back() function

#include <iostream>

#include <list>

using namespace std;


int main()

{

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

cout << mylist.back();

return 0;

}


Tags

Post a Comment

0Comments
Post a Comment (0)