I'm trying to copy some 2D arrays of strings into an another one. I have 2 arrays that look like this:
char *tabA[SIZE];
char *tabB[SIZE];
I want to copy tabA[indexA]
to tabB[indexB]
but strcpy(tabB[indexB], tabA[indexA])
doesn't work at all, program gets crashed (but compiler doesn't return any errors).