If I have this:
int a = 2; int b = 4; int &ref = a;
How can I make ref refer to b after this code?
ref
b
This is not possible, and that's by design. References cannot be rebound.