16. int x = 10, y = 12, z;
z = (x++ * y++) +- y/2;
Answers
Answered by
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
Psychology,
4 months ago
Physics,
4 months ago
Science,
9 months ago
Hindi,
1 year ago
Science,
1 year ago