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