fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int n = 4;
  5. int m = 5;
  6. int i =0;
  7. int j = 0;
  8. printf ("hello ");
  9. for( i = 0; i > m; i++)
  10. {
  11. for (j = 0; j < n; j++)
  12. {
  13. printf ("world");
  14.  
  15. }
  16.  
  17. }
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
hello