Question.5
A developer writes a compact buffer copy loop:
int i = 0; int x = i++ + ++i;
What is the value of x?
x
Select Answer
1
2
3
Undefined behavior — i is modified twice between sequence points