there are same rules, in both, Java and C (and C++ also)
Code:
i++; // return the value of i, then increment
++i; // increment the value of i, then return