I am able to do this:
char * months[] = {\"empty\",\"jan\",\"feb\",\"mar\",\"apr\",\"may\",\"jun\",\"jul\",\"aug\",\"sep\",\"oct\",\"nov\",\"dec\"}; unsigned sh
Here is a way to assign array of pointers to double pointer, I hope this is what you are looking for:
#include int main() { char *arr[]={"hello","world"}; char **ptr=arr; printf("%s\n",ptr[1]); return 0; }
OUTPUT: world
world