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.
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.
The problem is that it is not specified which is evaluated first, the
printf
or thea++
, and since one has a side effect on the other (you either reada
then write it then read it again, or read it then read it then write it), you get undefined behaviour.