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