任何人都可以解释这一点吗?
#include<stdio.h>
void FunPrinter(int *x)
{
int i, j;
for(i = 0; i < 4; i++, printf("\n"))
for(j = 0; j < 5; j++)
printf("%d\t",*x++);
}
int main()
{
int x[][5] = {
{17, 5, 87, 16, 99},
{65, 74, 58, 36, 6},
{30, 41, 50, 3, 54},
{40, 63, 65, 43, 4}
};
int i, j;
int **xptr = x;
printf("Addr:%ld,Val:%ld,ValR:%ld",(long int)x,(long int)*x,(long int)**x);
printf("\nInto Function\n");
FunPrinter(&x[0][0]);
printf("\nOut Function\n");
for(i = 0; i < 4; i++, printf("\n"))
for(j = 0; j < 5; j++)
printf("%d\t",**xptr++);
return 0;
}
输出:
Addr:140734386077088,Val:140734386077088,ValR:17
Into Function
17 5 87 16 99
65 74 58 36 6
30 41 50 3 54
40 63 65 43 4
Out Function
Segmentation fault (core dumped)
为什么直接寻址不起作用?我正在通过指针访问。我使用了双指针,但它不起作用。我也尝试使用单指针作为 xptr。但仍然无法正常工作。