Computer Science, asked by designforlf123, 7 months ago

Evaluate the following expression if the values of the variables are x=2,y=3and z=9
(i) x-(y++)*(--z) (With Steps)

(ii) x*(++y)%z (With Steps)

Answers

Answered by Xypher007
1

Answer:

x=2, y=3, z=9

i) y++=3, --z=8

= 2-3*8

=2-24

=22

ii)++y=4

=2*4%9

=8%9

=8

Hope it helps

Similar questions