+ 3
the difference is when and how they are used.
declaring pointer:
int x = 4;
int *p = &x;
dereference operator:
*p = 8;
the dereference operator is used to access the value of the variable that the pointer points to.
p = 8 would change the address of the variable.



