Computer Science, asked by prafulhindustan48, 10 months ago

What will be the result stored in X after evaluating the following statements?

int X = 5;

X += X++ * 2 + 3 * – – X;​

Answers

Answered by KumarDeepakNaik
2

Answer:

int x=5;

x += x++ * 2+3 * --x;

x=30 (Answer)

Similar questions