What's so illegal about this operation

115 Views Asked by At

Namely code similar to this, making the printout undefined.

int a=41; a++ & printf("%d\n", a);

I don't know what exactly this operation is called.

1

There are 1 best solutions below

2
On BEST ANSWER

The problem is that it is not specified which is evaluated first, the printf or the a++, and since one has a side effect on the other (you either read a then write it then read it again, or read it then read it then write it), you get undefined behaviour.