fork(1) download
  1. #include <stdio.h>
  2.  
  3. #define a (__COUNTER__+1)
  4.  
  5. int main(void) {
  6. if (a == 1 && a == 2 && a == 3) printf("123123123");
  7. return 0;
  8. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
123123123