I have an array of 64 bit unsigned integers. Is it possible to assign some pointers of an array in some positions of it. I mean:
array [0] = Integer
array [1] = Integer
array [2] = Pointer to array
array [3] = Pointer to array
array [4] = Integer
Can anybody help me how to do that ?
One way is to turn
arrayinto an array ofand work with that.
You will, of course, need some way to know whether a particular element stores an integer or a pointer.