OK, so a crash course on pointers. This will be a long email. But it’s at least a month worth of classes crushed into a couple of pages.
A pointer is a variable literally pointing to an address (any address) in memory.
for instance:
int nVar = 12; //This is a regular variable!
int * pVar = 0; //This is a pointer variable!