What is the correct answer?
4
int x = 10, y = 15; x = ((x < y) ? (y + x) : (y - x);
A. 25
B. 15
C. 5
D. Error can't be executed.