jackieespi88871 jackieespi88871 25-01-2024 Computers and Technology contestada What are the values of x and y after the function call in the following code?void magic(int x, int y) { int temp = x; x = y; y = temp;}int x = 50;int y = 75;magic(x, y);a) x = 75, y = 50b) x = 50, y = 75c) x = 75, y = 75d) x = 50, y = 50