Dereferencing a pointer: To access or modify the value stored at the corresponding address. In C, this is done with the * prefix operator.
*
X = *P;
P
X
*P = 13.1;
*P = X;