Object Oriented Programming in C++

📖 Definition:

A pointer is a variable that stores the memory address of another variable.

 
int x = 10;
int* ptr = &x;
Â