5 int main()
6 {
7 int i=0;
8 int j=0;
9 int a = (i++, j--);
10 int b = ({i++; j--;});
11
12 printf("%d %d %d %d\n", a, b, i , j);
13 return 0;
14 }