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