#100daysofcode Day 69
Learning about pointers.
A pointer is a variable which stores the address of some data.
This data could be a variable/class/function etc.
Pointers allow us to have more control over memory, so we can develop optimized apps/programs.
#programming#CPP