fork download
  1. #include <iostream>
  2.  
  3. #define f(x) g(x+1)
  4. #define g(x) f(x+1)
  5.  
  6. void (g)(int x) {
  7. std::cout << x << std::endl;
  8. }
  9.  
  10. int main() {
  11. g(1);
  12. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
3