摘要: #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... 阅读全文