#include<stdio.h>
void foo(int **arr) {
arr[1][1]++;
}
main() {
int arr[20][20];
printf("%d\n",arr[1][1]);
foo((int**)arr);
printf("%d\n",arr[1][1]);
}
|
|
||||
|
Now consider the following,
Output :
|
|||||||||||
|
|
Here's what an
That is, an array immediately followed by another array. Here's what an
That is, an int immediately followed by another int. So, here's also what an
If you cast Arrays are not the same as pointers, and 2-D arrays are certainly not the same thing as pointers-to-pointers. |
||||
|
|
|
Because foo expect a pointer to a pointer to int and you are passing it a pointer to an array of 20 int. Casting it won't change the fact that it isn't the correct type. |
|||
|
|
|
If you change it like this, you get the expected result:
|
|||||
|
|
|
|||||||||||||
|
|
Problem is that |
|||
|
|