Pointers in Go — What are They and How to Use Them

A Look at Value and Reference Types and What do They Mean For Pointers

Ivan Stoev
Level Up Coding
Published in
3 min readMay 6, 2022

--

Photo by Markus Spiske on Unsplash

What is a Pointer?

A pointer is a variable which is used to store the memory address of another variable.

--

--