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