AFAIK the following is implementation-defined behaviour, am I right?:
#include <stdio.h>
int main(void)
{
int n= 0;
printf("%d\n", n++);
return 0;
}
#include <stdio.h>
int main(void)
{
int n= 0;
printf("%d\n", n++);
return 0;
}
Comment