What is a Pointer in the Computer?
The term pointer may refer to two things:
1: the mouse cursor, which points to elements on the screen.
2: a piece of data in a memory address that holds the memory address of another piece of data, e.g. in the code int* p = 2, the pointer p points to an integer stored in the memory address 0x00000002 in a CPU with 32-bit addresses.


vptr of instances and the vtable of classes on some Object Oriented Programming implementations, such as C++ [How Abstractions Work in Programming].