For example, if i have a function defined as:
double** trans(double **A)
and a matrix defined as
double A[3][3]={1,1,1,1,1,1,1,1,1};
How can I use this matrix as a input for the function?
For example, if i have a function defined as:
double** trans(double **A)
and a matrix defined as
double A[3][3]={1,1,1,1,1,1,1,1,1};
How can I use this matrix as a input for the function?