fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i = 0, j = 0;
  5. while (i < 2) {
  6. l1: i++;
  7. j++;
  8. while (j < 3) {
  9. printf("Hello\n");
  10. goto l1;
  11. }
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
Hello
Hello