Is there a way to use one type of iterator for another? like vector<int> iterator to vector<string> iterator,also any way iterator can be used like a interger?? coz i wanna do some mathematical manipulations on an iterator.coz i cant,i use a variable
int i;int ss=string.size()
for(int i=0;i<ss;++i)
but i was told this was not recommended in stl
Any help?