Assuming arr_ptr is a pointer to an array. The dereferencing operator * in *(arr_ptr+4) gets the value stored in the object that the pointer refers to, which would be the fifth element of the array.
A pointer stores a memory address - The value of arr_ptr+4 by itself is the memory address of the object it points to.