Computer Science, asked by patilthaksen5, 4 months ago

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

X+ = x++ ++x % 2

x = 4 + (4*6) % 2

= 4 + (24%2)

= 4 + 0 =

= 4​

Answers

Answered by anindyaadhikari13
1

Answer:-

Given,

x=4

x+=x++*++x%2

>> x=4+4*6%2

>> x=4+24%2

>> x=4+0

>> x=4.

Hence, the final value of x is 4.

Answered by BrainlyProgrammer
2

Answer:

Given..x=4

x+ = x++ * ++x % 2

x=x+(x++*++x%2)

x=4+(4*6%2)

x=4+(4*0)

x=4

Explanation:

This is ur answer...

Similar questions