I have the following bidimensional array
int a [100][100];
Why the first address of this array is only:
& (mat[0][0])
and not also:
mat
like any other array?
Thanks in advance
int a [100][100];
Why the first address of this array is only:
& (mat[0][0])
and not also:
mat
like any other array?
Thanks in advance
Comment