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