I am very new to programming. I know about numerical and logical operators. But I have never seen this- <--
operator. I searched over internet but got nothing helpful.
Here is the code:
int i=5;
while(0 <-- i){
printf("%d\n", i);
}
The output is:
4
3
2
1
What is this operator? What does it do?
Edit: I also wish to know about other confusing composite operators like this.