In cppreference.com, it states that the begin()
and end()
functions are defined in the header file < iterator >
. But I still can use the begin()
and end()
functions without including the < iterator >
header. I wonder why? Is it because I use;
using namespace std;
So it is included?