A guide to pointers in C
Address of a variable
Every variable in C has a memory location where it is stored. This memory location is called the variable's address.
Pointer
A pointer is a variable that stores the address of another variable.
We use the * (asterisk) operato...
visheshraghuvanshi.hashnode.dev3 min read