Learn this written chapter step-by-step alongside the CodeToCareer series.
Understand the 4 stages of C compilation and master memory pointer dereferencing and pointer arithmetic.
Memory in your computer is like a giant row of numbered mailboxes: a regular variable is the letter inside a mailbox, while a pointer is a piece of paper with the mailbox number written on it.
C maps directly to CPU machine instructions:
.o).A pointer is a variable that stores the physical memory address of another variable.
Think of & as 'Get Address Of', and * as 'Get Value At Address'.