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