Hi,
I need to pass a double [][6]
to a method. But I don't know how to create that two-dimensional array.
6
is a fixed size (or a "literal constant", if my terminology is right), which the method accepts. I was trying something like this, but without success...
double *data[6] = new double[6][myVariableSize];
So, the method really looks like:
int myMethod(double obj_data[][6]);
Thanks in advance