Recently, I came across a code where --> was used.
example:
int a = 5;
while(a-->0){
//do something 'a' times
}
Is (a-->0)
equivalent to (a-- > 0)
or simply, ((a=a-1) > 0)
?
If not, I want to know what's that operator called, and are there other similar operators. If so, then where are they mentioned?
Thanks