Hello,
I usually have quite a clear view of that kind of thing but today I'm just messed up...
I want to make an on the fly tridimensionnal array.
so what about that
is it gonna work?
of do I also need to malloc and fill the ** stuff; and * stuff? (that is what I guess...)
I usually have quite a clear view of that kind of thing but today I'm just messed up...
I want to make an on the fly tridimensionnal array.
so what about that
Code:
double *** stuff;
stuff=malloc(3*2*5*sizeof(double)); // for a double stuff[3][2][5]
is it gonna work?
of do I also need to malloc and fill the ** stuff; and * stuff? (that is what I guess...)