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 be able to fill it up with data. How to pass it in a manner that I will be able to fill it up directly? Maybe
function(float** array)
and then accessing array[0][0]
probably doesn't work? Strange how I can't find any quick example about this.