Pointers (cont)
Use brackets to avoid confusion:
- ie: *(currPtr++); is very different from (*currPtr)++;
Using ++ on a pointer will increment the pointer’s address by the size of the type pointed to
You can use pointers as if they were arrays (in fact, arrays are implemented a pointers)