I always read that pointer arithmetic is defined until you leave the boundaries of the array. I'm not sure I fully understand what this means, and I was a little worried. Hence this question.
Suppose I start with a pointer to the beginning of an array:
int *p = (int*) malloc(4 * sizeof(int));
Now I create two new pointers that lie outside the array:
int *q = p + 10; int *r = p - 2;
Now the pointers are q-10 , q-9 , ..., r+2 , r+3 , etc. they all lie inside the boundaries of the array. Are they valid? For example, is r[3] guaranteed to give the same result as p[1] ?
I did some testing and it works. But I want to know if this is covered by the usual C specifications. In particular, I use Visual Studio 2010, Windows, and I program in native C (not C ++). Am I covered?
becko
source share