In C, what is the term for when two pointers reference the same memory location, as in ‘int *ptr1, *ptr2; int x; ptr1 = ptr2 = &x;’?
In C, what is the term for when two pointers reference the…
Written by
in
Written by
in
In C, what is the term for when two pointers reference the same memory location, as in ‘int *ptr1, *ptr2; int x; ptr1 = ptr2 = &x;’?
Leave a Reply