How to cast simple pointer to a multidimensional-array of fixed size?

float (*somethingAsMatrix)[2] = (float (*)[2]) matrixReturnAsArray;

Leave a Comment