Access
We'll cover the following...
To access the elements of a container, you can use an iterator. If you use a begin and end iterator, you have a range, which you can further process. For a container cont
, you get with cont.begin()
the begin iterator and with ...