Here are some definitions for you:
* == "star operator" == dereference operatorExamples:
You have seen this before in the declaration of a pointer but this * and that * are not the same *. By using the derefernce operator, you can access the value that pointer is pointing to.& == "address of operator" == ampersand
To access the address in memory where a variable, you need to use the address of operator. By placing an ampersand in front of a variableName, the memory address of that variable is returned.