Hi,
when defining new data types in C, one can do
typedef double BYTE;
so later it is possible to do
BYTE length;
etc
I would like to do something like
typedef double[30][30][10] mymatrix;
so later I do
mymatrix AA[10];
so I have 10 matrices of type mymatrix, and I can access them through AA[0], AA[1], etc
Anyway doing this with the GNU C compiler I get errors like
error: expected unqualified-id before '[' token
What am I doing wrong or how could I achieve my objective?
Thanks