I use a vector< int > and I want to store all the vectors into another. So I have chosen list<vector<int> >
Later I want to display all the elements hold in each vector in the list. But I'm wondering how to display them now.
If I'm using only vector or list means I can use iterator and display my ints. But I don't know how to do this. Can anybody help?