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

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

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

unit testing - How to mock PreferenceManager in Android? -