If x = 4, find the value of x* = x++ * 3 - ++x % 4;
Answers
Answered by
12
Answer:
Given, x=4
x*=x++ *3 - ++x %4;
x=x*(x++ *3 - ++x%4) [Let's calculate]
=4*(4*3 -6%4)
= 4*(12- 2)
=4*10
=40
New value of x:-40
Answered by
3
hope this helps you
Similar questions