How do I pass the m matrix to foo()? if I am not allowed to change the code or the prototype of foo()?
void foo(float **pm) { int i,j; for (i = 0; i
Does foo(m) not work?
foo(m)