fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int x=0,y=0,i,j;
  6. i=8;
  7. j=10;
  8. x+=++i;
  9. y-=j--;
  10. printf("i=%d,j=%d,x=%d,y=%d\n",i,j,x,y);
  11. // your cod e goes here
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
i=9,j=9,x=9,y=-10