fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a = 15,b,c;
  5. b = ++a;
  6. c = a++;
  7. b--;
  8. --c;
  9. b -= c;
  10. printf("b = %d\n",b);
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5304KB
stdin
45
stdout
b = 0