Figure 4 is what I am trying to implement
Part 5: From Trees to Graphs
does it really matter what type the array is?
The int*[], Node*[] dynamic array is still flat..its almost like saying int[4] or Node[9] except it is pointers... and as Elysia said..the subscripts directly access the values...so the declaration should work.

OK..i will try this

int **a = {0x40, 0x50,0xdF} ;

a[0] accesses 0x40..this is the first star...a[0][0] the second subscript, the second * refers to the memory location that 0x40 points to.... :S