fork download
  1. #import <stdio.h>
  2. int main()
  3. {
  4. int a,d,b,c;
  5. a = 10;
  6. c = 10;
  7. d = --c + --c+1;
  8. b = --a +1+ --a ;
  9. printf("b= %d, d = %d" , b,d);
  10. return 0;
  11. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
b= 18, d = 17