Computer Science, asked by anain75, 1 day ago

x = (x++ + --x) *x-- + ++x; [ x = 3 ]​

Answers

Answered by Samipyo
0

Answer:

19

Explanation:

x= ( 3 + 3)*3 + 3

= 19

postfix changes the value after use while prefix changes the value first and then uses it.

Similar questions