I am trying to get the value for the last equation
int a = 0, b = 0, c = 0, x = 0, y = 0, z = 0;
a = b++ + ++c;
printf("a=%d\n", a);
x = y + 1 + ++z;
printf("x=%d\t", x);
printf("b=%d\t", --b);
printf("b=%d\t", b++);
printf("c=%d\t", c+1);
printf("c=%d\t", 2-c);
whats the value of the last equation and why? how do I calculate it