fork download
  1. #include <stdio.h>
  2. int main (){
  3. int i,j;
  4. for(i=0;i<10;i++)
  5. {
  6. for(j=0;j<10;j++)
  7. {
  8. printf("%d",i);
  9. }
  10. printf("%d\n",i);
  11. }
  12. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
00000000000
11111111111
22222222222
33333333333
44444444444
55555555555
66666666666
77777777777
88888888888
99999999999