Intervalo en C


#include <stdio.h>

#include <stdlib.h>

#include <time.h>



void intervalo (int inicio, int fin);


int main ()

{



int num1, num2;


srand(time(NULL));

num1=(rand()%21)+5;
   
    num2=(rand()%21)+5;
   
   
    intervalo(num1,num2);
   



return 0;

}

void intervalo (int inicio, int fin)
{

    int aux;
    if (inicio>fin){
        aux=fin;
        fin=inicio;
        inicio=aux;
    }
    if (inicio%2 == 0)
        inicio++;
   
    while(inicio<=fin){
        printf("  %d  ", inicio);
        inicio+=2;
    }
   
    return;
}