So i am trying to understand pointers, and failing slightly. So hoping someone can help me clear it up.
So if i declare a pointer and an int
int* pScore
int score=500
then have
pScore=&score
Does the pScore return the address of score, and then *pScore return the value in which is stored at the address of score?
Ok I think I am getting it now. Thanks :)