ATTENZIONE…!!
j = ++k - k++; /* in cerca di guai! */
è certo che l’espressione venga valutata come j = x - y (da sinistra a destra)
è certo che alla fine k valga 8
ma non si sa se venga calcolato prima x o prima y, e qui la cosa fa molta differenza!
- se prima x, poi y _ j = 7 - 7 = 0
- se prima y, poi x _ j = 8 - 6 = 2