Hi, i've just been working through the pointers chapter in my C++ book and come across a confusing part.

What's the difference between using:

int iAge = 20;
int * pAge = &iAge;

and

int *...