Hi,
Trying to get my head around constructing an array of pointers (I think this is what its called).
Been reading lots of online tutorials etc and just getting confused.
Basically what I'm trying to is set an array of chars, with each array cell pointing to a linked list (each cell in the linked list I want to contain an integer value and char's)
[ ]---->[][]---->[][]
array[n] [ ]---->[][]
[ ]---->[][]---etc
Any ideas about how I could implement this?
Thanks
Dan