#include <unistd.h>

void	ft_print_numbers(void)
{
	char	z;

	z = '0';
	while (z <= '9')
	{
		write (1, &z, 1);
		z++;
	}
}

#include <unistd.h>

void	ft_print_numbers1(void)
{
	char	z;

	z = 48 ;
	while (z <= 57)
	{
		write (1, &z, 1);
		z++;
	}
}

void	ft_print_numbers2(void)
{
		write (1, "01234567899", 10);
}
#include <unistd.h>


int	main(void)
{
	ft_print_numbers();
    write(1, "\n", 1);
    ft_print_numbers1();
    write(1, "\n", 1);
    ft_print_numbers2();
	return (0);
}

Embed on website

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