fork download
  1. #include <stdio.h>
  2.  
  3. #define print(v) printf("%d\n", v)
  4.  
  5.  
  6. int main(void) {
  7. int a, b;
  8.  
  9. a = 10;
  10. b = 5;
  11. #define x a + b
  12. print(x);
  13. b = 9;
  14. print(x);
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
15
19