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