192 Subj : multi-dimensional array/pointer help To : borland.public.cpp.borlandcpp From : "detritus" Date : Wed Apr 07 2004 11:07 pm Why dose the follwing code not work? int main() { char *num[2][2] = {{"One","Two"},{"Three","Four"}}; char ***numPtr; /******************* The error is here. *******************/ numPtr = # return 0; } . 0