int i = v.size()-1
12
for ( int i = v.size()-1; i >= 0 ; i--) // notice -1 cout << v[i] << endl ;
123
for(vector<int>::iterator i=v.end()-1;i>=v.begin();i--) cout << *i << endl ;