Computer Science, asked by aaymehja, 5 months ago

if x=4 ; find the value of x+ =x++ *x%2

This is an absolutely correct question ​

Answers

Answered by Oreki
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