Hi, there
Assume that I have three vectors x,y and z that has the same number of
elements. Can I use a common iterator for these three.
I did it with iterx, itery and iterz but the thing I wondered was: in a
for loop you can write array elements by using the same index such as;
for (int i = 0 ; i!=10; ++i )
cout << x[i] << y[i] << z[i] << endl; Bu
So I just wondered if sth is possible with iterators(common ?) in
order to get the container elements
Thx.