Pointers
This is a wiki page. Be bold and improve it!
If you have any questions about the content on this page, don't hesitate to open a new ticket and we'll do our best to assist you.
Get the value of what a pointer points to:
int count = 42;
int* pCount = &count;
int i = *pCount; // i == 42
Dereference operator
Do not confuse the * pointer with the * dereference operator.
1