Possible Duplicates:
Malloc a 3-Dimensional array in C?
dynamic allocation/deallocation of 2D & 3D arrays
How can i allocate 3D arrays using malloc?
How can i allocate 3D arrays using malloc?
| |||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
array = malloc(num_elem * num_elem * num_elem * sizeof(array_elem)); Why not? :) | |||||||||
feedback
|
|
There are two different ways to allocate a 3D array. You can allocate it either as a 1D array of pointers to a (1D array of pointers to a 1D array). This can be done as follows:
Sometimes it is more appropriate to allocate the array as a contiguous chunk. You'll find that many existing libraries might require the array to exist in allocated memory. The disadvantage of this is that if your array is very very big you might not have such a large contiguous chunk available in memory.
To access your array you just use the macro:
| |||
|
feedback
|
|
For a given type T (non-contiguous):
Unless you are working with a very old (pre-C89) implementation, you do not need to cast the result of | |||
|
feedback
|
|
@Poita_, ok, maybe you are right, but if somebody still wants to use 3-dimensional array allocated in one big chunk, here's how you add normal indexing to it:
| |||
|
feedback
|
|
This would work
| ||||
|
feedback
|