quick and dirty iterator definition

If this makes sense:

object == *thing++;


Then "thing" is an iterator.

char *a = "C++";
'C' == *a++;

All pointers are iterators.