摘要:
#include 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... 阅读全文
posted @ 2017-08-11 21:57
rocklee25
阅读(172)
评论(0)
推荐(0)
浙公网安备 33010602011771号