how do i allocate memory to a 2-dim char array:

char **array;

can i set and look at a row like one whose size is specified?
e.g.

strcpy(array[0],"This is an example");

printf("output : %s\n",array[0]);

TIA, rotis23