As I see in C++ books, all of them using != operator to check that the vector is end or not.
example:
Code:
std::vector<int>::iterator itr;
for ( itr = vec.begin(); itr != vec.end(); ++itr )
Is it possible if we use itr < vec.end() instead ????