If I have this array:
#define a 10
#define b 20
int foo[a][b];
I could get the pointer to foo[i][j] like this:
int *pointerToElement(i, j)
{
return *foo + i * b + j;
}
Isn't there an easier way using index notation (*foo[i][j])?
|
If I have this array:
I could get the pointer to
Isn't there an easier way using index notation ( |
|||
|
|
|
How about this:
|
|||
|
|
|
Your method is wrong:
This dereferences the pointer
And since the index notation also dereferences the pointer, you have to reference it again:
|
|||||||||||
|