gpt4 book ai didi

c - 如何使用 "pointer to array 10 of int"?

转载 作者:太空狗 更新时间:2023-10-29 17:18:36 26 4
gpt4 key购买 nike

我有以下代码:

#include<stdio.h>

int main()
{
int(* a)[10]; //declare a as pointer to array 10 of int
int b[10]; // taken a array of 10 int
b[2]=32;
a=&b;
printf("b is on %p\n",&b);
printf("a is on %p\n",a);
printf("magic is %d\n",a[2]); // why this is not showing 32
return 0;
}

输出:

b is on 0xbfa966d4
a is on 0xbfa966d4
magic is -1079417052

这里我将a作为指向数组10的int的指针,它指向数组b,所以现在为什么我不能在 a[2] 上获取 32 的值?

a[2] 被评估为 *(a+2) 所以现在 a 有数组 b 的地址 所以 * (b+2)*(a+2) 很相似,为什么我在这里没有得到值 32?


编辑:我通过使用

得到了答案
(*a)[2]

但我不明白它是如何工作的......看当

a[2]*(a+2)a+2 是加号 2 * sizeof(int [10]) 个字节。

这样(*a)[2]怎么展开?

最佳答案

因为 a 已经是一个指针,你必须取消引用它才能引用它指向的数组:

(*a)[2]

关于c - 如何使用 "pointer to array 10 of int"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9308695/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com