When performing pointer arithmetic, the size of the computation value to add to a pointer is automatically scaled to the size of the pointer's type. For instance, a pointer to a four-byte integer will be scaled by four bytes at a time.
...
When performing pointer arithmetic, the size of the computation value to add to a pointer is automatically scaled to the size of the pointer's type. For instance, a pointer to a four-byte integer will be scaled by four bytes at a time.
...