- Joined
- Feb 25, 2007
- Messages
- 286
I have an array with 16 data members and a pointer that can be at any position at any given time. If I want to reset the pointer so that it can go back through the array again what exactly should I do?
I tried:
But my biggest concern is that this will go into RAM with some awkward negative index for the array.
I tried:
Code:
myPointer -= 16;
But my biggest concern is that this will go into RAM with some awkward negative index for the array.