I have this array:
float (*probability)[4];
This is 2D array but i don't know the number of first [], this can be calculate in some function after and in that function I don't know how to malloc()
this array.
My code is like this:
int main(int argc, char ** argv){
float (*probability)[4];
some_function_to_malloc(&probability);
return 0;
}