27.05.2015, 20:34
Quote:
Has nothing to do with it, as in this context both versions have exactly the same effect. But try:
Код:
new a = 5; new b = 5; printf("%d", a++); // prints 5, because a gets incremented after the print printf("%d", ++b); // prints 6, because b gets incremented before the print |