X
xontrn
For
float a[9];
we know just using the array name a gives a float* to the first
element in the array.
For
float m[4][3];
what is the type of the array name m?
float a[9];
we know just using the array name a gives a float* to the first
element in the array.
For
float m[4][3];
what is the type of the array name m?