[Solved] Trying to understand a function to swap two int values
Let’s try to explain *x = *y; without using the word “dereference”: *x represents the integer object pointed to by x. As it is the left operand of the assignment, it means that this integer object is going to be updated. *y represents the integer object pointed to by y. As it is the right … Read more