Post increment explaination

int a=5;
a=a++;
printf("%d",a);
tell value of a?

See e.g. here.

1 Like