Answers for "store an iterator in vector c++"

C++
7

c++ vector iterator

#include <iostream>
#include <vector>
using namespace std;

vector<int> myvector;

for (vector<int>::iterator it = myvector.begin();
     it != myvector.end();
     ++it)
   cout << ' ' << *it;
cout << '\n';
Posted by: Guest on March-09-2020

Browse Popular Code Answers by Language