摘要: View Code typedef struct LList LList; struct LList { int value; LList *next; }; LList *(*p)[3]; /* pointer to an array of 3 pointers to LList */ LList ll1 = {11}; LList ll2 = {22}; LList ll3 = {33}; size_t sizeofarray = sizeof*p/sizeof**p; /* calc arraysize at runtime here */ p = malloc( sizeofarra. 阅读全文
posted @ 2012-01-02 14:23 lxk613 阅读(241) 评论(0) 推荐(0) 编辑