fork download
  1. #include <stdio.h>
  2. #define pook printf("%d\n", __LINE__)
  3.  
  4. int main(void) {
  5. pook;
  6. pook;
  7. pook;
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
5
6
7