Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 225 Bytes

4.2.md

File metadata and controls

7 lines (4 loc) · 225 Bytes

(a) * vec.begin() ==> * ((vec.begin)())

The order is: member selector, function call, dereference.

(b) * vec.begin() + 1 ==> ( * ((vec.begin)())) + 1

The order is: member selector, function call, dereference, add.