fork download
  1. #include <stdio.h>
  2. int main() {
  3. int i = 1;
  4. while (i <= 5) {
  5. printf("Hello Thailand\n");
  6. i++;
  7. }
  8. return 0;
  9. }
Success #stdin #stdout 0s 5388KB
stdin
Standard input is empty
stdout
Hello Thailand
Hello Thailand
Hello Thailand
Hello Thailand
Hello Thailand