# Problem What are the values of `x` and `y` after executing the following code? ```c int t, x, y; t = 4; x = t++; y = --t; ``` # Process ... # Answer * `4` and `4`.