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