Get Memory Address and Value
In the example from the previous page, we used the pointer variable to get the memory address of a variable (used together with the &
reference operator). However, you can also use the pointer to get the value of the variable, by using the *
operator (the dereference operator): Continue reading C++ Dereference