void main()
{
int Var = 90;
if(Var += (((Var == (++Var)) == 89)))
printf(" %d ",Var);
}
Operator precedence: 1. Increment operator (++) 2. Relational operator (==), and its Associativity is Left to Right 3. Assignment operator (+=) Hope it helps...:thumbsup: