Explain the Error
Explain why the statement swap (a[0], a[1]) does not swap the values stored in a[0] and a[1].
public static swap(int x, int y){ int temp = x; x = y; y = temp;}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.