gpt4 book ai didi

c++ - 数组是否被称为隐式指针

转载 作者:行者123 更新时间:2023-11-30 18:02:49 27 4
gpt4 key购买 nike

Possible Duplicate:
Is array name a pointer in C?
How do I use arrays in C++?

以下程序显示了数组和指针的相同属性...数组元素与 pinters 有某种关系吗?

#include <iostream>
using namespace std;
int main(){
int a[3];
for(int i=0;i<3;i++){
cin>>*(a+i);
cout<<*(a+1);
}
return 0;
}

最佳答案

C 常见问题解答回答了许多有关数组和指针的常见问题,并且数组不是指针,但有一些魔法使它们看起来像指针......

http://c-faq.com/aryptr/index.html

关于c++ - 数组是否被称为隐式指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8920408/

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