Hi
if I want to print by rows of
char boo[] =
"abcd"
"efgh"
"ijkl"
"mnop";
I'd go with
for(i = 0; i < 4; i++)
{
char row[] = "";
for(j = 0; j < 4; j+)
printf("%c", *(boo++))
putchar('\n');
puts(row);
}
my question is how I can print columns so I get
aeim
bfjn
cgko
dhlp