What will be the result stored in X after evaluating the following statements?
int X = 5;
X += X++ * 2 + 3 * – – X;
Answers
Answered by
2
Answer:
int x=5;
x += x++ * 2+3 * --x;
x=30 (Answer)
Similar questions