#include <unistd.h>

void    ft_print_alphabet(void)
        {
        int     i;

        i = 97;
        while (i < 123)
        {
                write(1, &i, 1);
                i++;
        }
}

int     main(void)
{
        ft_print_alphabet();
        return (0);
}

Embed on website

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