creation of *text[] =
char* text[9][201]={
"This is a test",
"t3.",
"hi."
};

alltext is described as : char *AllText[1][1];

in constructor : (passed *text[])

for(int i=0; i<vlen; i++){
AllText[i][0]=new char[slen+1];
strcpy(AllText[i][0], text[i]);
cout<<AllText[i][0]<<endl;
}


In the display function :
for(int i=0; i<vlen; i++)
cout<<AllText[i][0]<<endl;


-------------------------------------------
OUTPUT:
This is a test
t3.
hi.

This is a test
xxx - crash here - xxx
---------------------------------------------


**CRASH WHEN GOING TO AllText[1][0]**
(first line prints fine)