give output of int x= 5;
x++ * 2 + 3* --x
Answers
Answered by
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