I have the following two-dimensional array of strings.
char matriz[linhas][tamanhoDaString]
Through strcpy
I copied a string there.
char *aux = "abc";
strcpy(matriz, aux);
My goal was to set linha 3
to aux
.
How can I solve my problem?