Traverse a List Using an Iterator

Started by aruljothi, Jun 11, 2009, 05:28 PM

Previous topic - Next topic

aruljothi

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

typedef list<int> IntegerList;

int main()
{
       IntegerList intList;

       for (int i = 1; i <= 10; ++i)
               intList.push_back(i * 2);

       for (IntegerList::const_iterator ci = intList.begin(); ci != intList.end(); ++ci)
               cout << *ci << " ";

       return 0;
}