Dereferencing * is the dereference operator It gets the object a pointer is pointing to Opposite to the & operator Eg: int i = 42; int *p = &i; int j = *p; // equiv to: int j = i;