#include <unistd.h>
void ft_putstr(char *av)
{
while (*av)
write(1, av++, 1);
}
int main(int ac, char *av[])
{
int i;
i = ac - 1;
while (i > 0)
{
ft_putstr(av[i]);
ft_putstr("\n");
i--;
}
return (0);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: