Computer Science, asked by kavya4629, 6 months ago

int x=5, y=4, z;

z= (++x + ++y) * y++ % 2;​

Answers

Answered by Anonymous
0

6

of 8 vote

x = x++ + ++y; (1)

y = ++x + ++y; (2)

In (1) this is the following operations to be done.

i) ++y

ii) x = x+y

iii) x ++

In (2) this is the following operations to be done.

i) x ++

ii) y++

iii) y = x + y

Similar questions