Pointer Project Guidelines
- See:
- Use ONLY the pointer notation:
- you will NOT use the [ ] operator.
- you will not use the ugly *(p + i) notation.
- use if you need to access a cell in the array, get a walker and point to the cell you want to access
- you may use walker = walker + 1 or walker = walker + i
- The objective here is to get you accustomed to pointers to the point where you are not simply translating array notation to pointer notation. I want you to think in pointers.
- Use ONLY dynamic arrays. No static arrays. Do not forget to delete your arrays when you are done with them.