Hi,
small question concerning pointer:
How do I allocate and have access to this pointer in C:
float **x;
such that I can work with it like an array, e.g. x[0][0]?
Thanks a lot.
small question concerning pointer:
How do I allocate and have access to this pointer in C:
float **x;
such that I can work with it like an array, e.g. x[0][0]?
Thanks a lot.
Comment