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