I was going through K&R C book and got through this -->
operator in the precedence table. So, I wondered if there was a similar operator i.e., <--
and wrote the following program:
#include<stdio.h>
void main()
{
int x = 5;
while(0 <-- x)
printf("%d",x);
}
It worked perfectly fine. So why isn't <-- is not considered as an operator? (as it is not in the precedence table!) and what is it's precedence?