int n = 50, m = 50;int *ptr = &n, *ptr0 = &m;ptr = ptr0;
Assigning to reference changes the object to which the reference is bound.
Previous Question Next Question
Your comments will be displayed only after manual approval.