So in my main function I\'m creating a 2D array:
int dataDim = 100;
float inData[2][dataDim];
I want to pass it to a function where I will
in C, multidimensional arrays' sizes must be known to pass as such, although some sizes may be omitted, if you like.
Exact
void function(float array[][100]);
void function(float (*array)[100]);
Syntactically Valid
Although the compiler may legally ignore the size 2
.
void function(float array[2][100]);