Greetings!
So Section_03 covered Pointers, which I think were a tiny bit confusing, but I think I understand them.
I’ll use the analogy of a shopping mall.
Variables are like the stores in the mall, and Pointers are like the directional signs that point you to the correct store.
By seeing the directional sign, you can find the stores much more quickly.
When you use the ‘&’ symbol as in int = &myvar;
you are accessing the ADRESS of the variable.
When you use the ‘*’ symbol as in int = *myvar;
you are accessing the CONTENT of the variable.
Am I correct?