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