0
Just a question đ
we can use x -= 1 instead of x=x-1 so what can we use instead of x=y-1?
2 Answers
+ 2
on your example and Iuka example you can have
x = --y; // :D
But try to read more in the future about pre and post increment :) at one example they are the same, but in fact they'reâ not (tip from a beginner..haha)