Standard C++ Library Class Reference

<< *it4 << endl;
return 0;
}
Output :
3 3 2 2
Warning
If your compiler does not support default template parameters then you need to always supply
the Allocator template argument. For instance you'll have to write:
vector<int,allocator>
instead of:
vector<int>
See Also
find