fork(2) download
  1. #include <stdio.h>
  2.  
  3. #define repeat(count) for(int _repeat_##__LINE__ = 0; _repeat_##__LINE__ < (count); _repeat_##__LINE__++)
  4.  
  5. int main() {
  6. repeat(2) {
  7. repeat(3) {
  8. printf("hello\n");
  9. }
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
hello
hello
hello
hello
hello
hello