C program is given below:
include stdio.h
int main ()
{
int i, j;
char a [2] [3] = {{'a', 'b', 'c'}, {'d', 'e', 'f'}};
char b [3] [2];
char *p = *b;
for (i = 0; i less_than 2; i++) {
for (j = 0; j less_than 3; j++) {
*(p + 2*j + i) = a [i] [j];
}
}
}
What should be the contents of the array b at the end of the program?