In C can I pass a multidimensional array to a function as a single argument when I don't know what the dimensions of the array are going to be ?
In addition my multidimensional array may contain types other than strings.
|
In C can I pass a multidimensional array to a function as a single argument when I don't know what the dimensions of the array are going to be ? In addition my multidimensional array may contain types other than strings. |
||||
|
|
|
You can do this with any data type. Simply make it a double pointer:
But don't forget you still have to malloc the variable, and it does get a bit complex:
The code to deallocate the structure looks similar - don't forget to call free() on everything you malloced! (Also, in robust applications you should check the return of malloc().) Now let's say you want to pass this to a function. You can still use the double pointer, because you probably want to do manipulations on the data structure, not the pointer to pointers of data structures:
Call this function with:
Output: |
||||
|
|
|
Pass an explicit pointer to the first element with the array dimensions as separate parameters. For example, to handle arbitrarily sized 2-d arrays of int:
which would be called as
Same principle applies for higher-dimension arrays:
|
|||||
|
|
|||
|
|