Aloha :)
Steht das \(++\) vor der Variable, so wird diese vor ihrer Verwendung inkrementiert.
Steht das \(++\) hinter der Variable, so wird diese nach ihrer Verwendung inkrementiert.
$$\begin{array}{rrrcl}x & y & z && \text{Anweisung}\\\hline0 & 0 & 0 && y=++x\\1 & 1 & 0 && z=y++\\1 & 2 & 1 \end{array}$$$$a=(++x)+(y++)=2+2=4$$
Abschließend haben wir also:
$$x=2\quad;\quad y=3\quad;\quad z=1\quad;\quad a=4$$