But actually I remember that it can occasionally be used in image processing too, when you would use a pointer to iterate through an image, I would routinely use things like
dx = *(ptr+1)-*(ptr-1);
dx = ptr[1] - ptr[-1];
But actually I remember that it can occasionally be used in image processing too, when you would use a pointer to iterate through an image, I would routinely use things like
which is essentially the same as