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