double price = 1.52; double * location = &price; *location = 3.67; price = *location;
Dereference operator *location "unlocks" the memory cell: