I'm just starting to learn about c++.
And I want to know about this
int g = &h;
what does "&h" mean in there?
I know that in here
int &e = f;
means "e" is referencing to "f".
So what are the difference between "&" in something like this
int &a = b;
int c = &d;