Question

Assuming that x is equal to 4, which of the following statements will not result in y containing the value 5 after execution?
a. y = 5;
b. y = x++;
c. y = ++x;
d. y = x + 1

Answer

This answer is hidden. It contains 8 characters.