You now understand pointers and references.
Pointers store memory addresses with *
References create aliases with &
Pass by reference avoids copying large data
Dereferencing accesses the value at an address
Good job. You can now work with memory directly. Next, you will learn structs to group related data.