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