<<< Multidimensional Arrays | Index | >>> |
If the array is to be passed to a function f, the declaration of f would look like:
void f( int daytab[2][13] );
or it could also be written as
void f( int daytab[ ][13] );
<<< Multidimensional Arrays | Index | >>> |