fork download
  1. #include <stdio.h>
  2. #define macro(x) 42
  3. int (macro)(int x) { return x; }
  4. int main(void) {
  5. printf("%d %d\n", macro(1), (macro)(1));
  6. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
42 1