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. }
  10. return 0;
  11. }
Success #stdin #stdout 0s 5324KB
stdin
1
stdout
1
3
5
7
9