fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int numeros[5];
  5. int i=1, j=0;
  6.  
  7. while(i<=9) {
  8. numeros[j] = i;
  9. i += 2;
  10. j++;
  11. }
  12. printf("\n");
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout