Not able to do char* to char**

It is not accepting the cnt

char StrTitle[cnt][maxsize];

because it's not constant. I tried to do

const int ccnt= cnt;
char StrTitle[ccnt][maxsize];

but it won't work.

I am running out of idees with this.