if x=4 ; find the value of x+ =x++ *x%2
This is an absolutely correct question
Answers
Answered by
1
After Execution:
x = 4
Explanation:
As, x = 4,
> x += x++ * x % 2
> x += 4 * 5 % 2
> x += 20 % 2
> x = x + 0
> x = 4 + 0
> x = 4
Similar questions