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
You cannot reassign a reference.