hey guys right so i have been at this problem for the last 6 hours and have been hitting google like mad to no avail. Right I need a pointer to an array. This array contains pointers to Linked lists. Im going to have to malloc it since I dont know the array size until runtime.
LList **array
this was my first thought but this just gives me a pointer to an array of LList. Or atleast that is my understanding. Can someone give me a hand? Alex
EDIT: ok some info on how it would be used. Im implementing a very basic hash table. there is a structure that contains a pointer to an array of pointers to linked lists. it needs to be a pointer to the array so that when i resize the table, i can just change the pointer to point to the larger table.