Re: A[x][y][z]




what I had in mind and meant with "pre-compiler" or "preprocessor"
is a small utility which reads the C-"source" containing A[x,y]
or int A[n] and converts it into another C-source-file
where A[x,y] is converted into A[x][y] and int A[n]; into
int A[n+1] and maybe some other things too.

This can't be so difficult to write and probably already
exists somewhere ?!?

.