what is this the correct way to pass 2 dimensional array of unknown size?
reprVectorsTree::reprVectorsTree(float tree[][], int noOfVectors, int dimensions) <
Use pointers..
reprVectorsTree(tree, noOfVectors, dimensions);// Calling function.
Function Definition:
reprVectorsTree(float **tree, int noOfVectors, int dimensions){ }
I think it will be helpful to you.