Go Part 2: Basics of variables & pointers
Pointers
A pointer is an address to data in memory
& operator returns the address of a variable/function
* operator returns the data at an address (dereferencing)
The ampersand (&) operator, if we put that in front of a variable, the name of a v...
blogs.ruhan.tech4 min read