指向数组的指针
Posted rocklee25
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指向数组的指针相关的知识,希望对你有一定的参考价值。
#include <iostream> using namespace std; int main() { int A[2][5]={{1, 2, 3, 4, 5}, {6, 7, 8, 9, 10}}; int (*p_a)[5]; p_a = &A[1]; cout<<*((*p_a)+2)<<endl; cout<<(*p_a)[2]<<endl; // int &b=a; // cout<<sizeof(b)<<endl; // cout<<"hello world!"<<endl; return 0; }
以上是关于指向数组的指针的主要内容,如果未能解决你的问题,请参考以下文章