Answers for "how to make a iterator in vector class c++"

C++
5

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