c - How to declare triple pointers in array of pointers -


how declare triple pointer array of pointers have

char *mainmenu[] = {"menu1", "menu2", "menu3"} 

see picture

alt text http://www.freeimagehosting.net/uploads/6988d25305.png

how connect menu1,2,3 picture m1p1 m2p1 ??? need syntax please me ...

all[0] of type char **, , match definition of mainmenu, albeit appears terminating null in array.

char ***all; char *mainmenu[] = {"menu1", "menu2", "menu3", null}; all[0] = mainmenu; 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -