fork download
  1. #include <stdio.h>
  2. void funcion (int rango1, int rango2)
  3. {
  4. if (rango1<=rango2)
  5. {
  6. if (rango1%2)
  7. printf ("%d ", rango1);
  8. funcion (rango1+1, rango2);
  9. }
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i486-linux-gnu/4.8/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty