i have this code int i=3; int j=(++x)*(++x); now j become 25, why? cant explain it, why not 4*5=20?
i noticed that the expression x+++y is equal to x+(++y) what make c to choose this and not (x++)+y?
Separate names with a comma.