#include <unistd.h>

void	ft_putstr(char *av)
{
	while (*av)
		write(1, av++, 1);
}

int	main(int ac, char **av)
{
	int	i;

	i = 1;
	while (i < ac)
	{
		ft_putstr(av[i]);
		ft_putstr("\n");
		i++;
	}
	return (0);
}

Embed on website

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