--> is not a new operator.
It is just a conjunction of the operators -- and >.
You first compare, and then decrement the variable.
That is,
i --> 0
becomes effectively
i > 0; //Compare
i--; //and decrement
--> is not a new operator.It is just a conjunction of the operators -- and >.
You first compare, and then decrement the variable.
That is,
i --> 0
becomes effectively
i > 0; //Compare
i--; //and decrement