Guest User

Untitled

a guest
Nov 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. list<int> myList; // объявляем пустой список
  2. for (int i = 0; i < 11; i++)
  3. myList.push_back(i);
  4. list<int>::iterator it = myList.begin();
  5. advance(it, 20);
Add Comment
Please, Sign In to add comment