How to interpret these pre increment operators?
Pre increment operators have right to left associativity, so the right most i
will be incremented or all the i
's will be incremented once?
main()
{
int i=3,j;
j=++i*++i*++i;
printf("%d",j);
}
Answer is 216.