// test 1
int aaa[5] = {1,2,3,4,5};
int *temp_aaa = aaa;
for(int i=0; i<5; i++)
printf("%d\n", temp_aaa[i]);
exit(0);
// test 2
int bbb[5][2] = {{1,2},{3,4},{5,6},{7,8},{9,10}};
int *temp_bbb = bbb; // error
对于测试1,* temp_aaa可以引用数组aaa [5]
如何在测试2中引用包含数组的数组来打印出每个元素?