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