[Solved] How to represent this basic expression? [closed]


In C or C++,

++i means

(i = i + 1)

i++ means

(i = i + 1, i - 1)

5

solved How to represent this basic expression? [closed]