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",i);
  9. }
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
0000000000
1111111111
2222222222
3333333333
4444444444
5555555555
6666666666
7777777777
8888888888
9999999999