What will be the result stored in x after evaluating the following expression?[2]
int x = 4;
x+= (x++)+(++x)+x;
Answers
Answered by
2
Answer:
may be
- 4+ = (4++)+(++4)+4
- 4+ =+4
- +4=+4
Similar questions