单项选择题

定义inta[2][3],*prt[2],i;for(i=1;i<2;i++)prt[i]=a[i];则对a数组的正确引用为()。
A、prt[0][0]
B、*(a+1)[2]
C、*(prt[1]+2)
D、*(&a[0][0]+2)