#include <stdio.h> 
#include <stdlib.h>

//início
main(){

    int numero, impar = 0;

    for(numero = 0; numero < 50; numero++){
        impar = numero % 2;
        
        if(impar)
            printf("%d\n", numero);
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: