- 1
If x is 10, what are the values of x and y after the statement below is executed?
If x is 10, what are the values of x and y after the statement below is executed? y = ++x + x++ / 4 * (3 + x++); y = ? x = ? If x is 10, what are the values of x and y after the statement below is executed? y = x++ % 5 - --x * ++x; y = ? x = ?
1 Answer
0
Write the code and find out