Computer Science, asked by VenomousExcel, 9 months ago

int x=5;x=(x++)*2+3*(- - x);

Answers

Answered by sampritinandi135
0

Answer:

25

Explanation:

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

x= 5 * 2 + 3 * 5

x= 10 + 15

x= 25

Similar questions