blob: 01d9ca95a8a26f996c64c5c6ba296cd19ef19471 [file] [log] [blame]
int main ()
{
int i = 2;
i = i++;
printf ("%d\n",i);
}