fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int z, x=5, y=-10, a=4, b=2;
  6. z=++x - --y*b/a;
  7. printf("%d",z);
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
11