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