Computer Science, asked by sarkarsumana, 4 months ago

give output of int x= 5;
x++ * 2 + 3* --x

Answers

Answered by biologylover69
1

Answer:

The value of x is : x=x++*2 + 3 * – -x //sifter putting the values using precedence order x=5 *2 + 3*5 x =10 + 15; //finally x=25.

Similar questions