fork download
  1. #include <stdio.h>
  2. #define Inverse(A) -A
  3.  
  4. int main(void)
  5. {
  6. int x = 8;
  7.  
  8. int y = --x+3;
  9. printf("%d", y);
  10. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
10