main()
{
int k=35;
printf("%d %d %d",k==35,k=50,k>40);
}
The output of this code is 0 50 and 0 I couldn't understand why? Because I have learnt that priority of assignment operator is the least and the releational operator priority is more that that then how this kind of output has come please explain?