fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (){
  4. int i;
  5. for (i=1; i<=10;++i)
  6. printf("%d", i);
  7. return 0;
  8. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
12345678910