the correct syntax for a string array

STRING** tst;
tst = malloc(sizeof(STRING*),number of elements);
for(int i=0;i<number of elements;i++)
tst[i]=str_create("#number of characters");

now you can access the string array like this:

str_cpy(tst[0],"hallo");