fork download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int x = 1,y=1;
  5. while (x<5)
  6. while (y<5)
  7. {
  8. printf("Thailand\n");
  9. x++;
  10. y++;
  11. }
  12. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
Thailand
Thailand
Thailand
Thailand