Computer Science, asked by krishnandughosh056, 6 months ago

16. int x = 10, y = 12, z;
z = (x++ * y++) +- y/2;​

Answers

Answered by tripathishivansh12
0

Answer:

++x is called preincrement while x++ is called postincrement. after the code is run both a and b will be 1 but x will be 2. These are known as postfix and prefix operators. Both will add 1 to the variable but there is adifference in the result of the statement.

Explanation:

please follow me mark me as brainlist

Similar questions