单项选择题

设有以下定义:
int a[3][3]=1,2,3,4,5,6,7,8,9;
int(*ptr)[3]=a;
则下列能正确表示数组元素a[1][2]的表达式是______。

A.*((*ptr+1)[2])
B.a[2][3]
C.(*ptr+1)+2
D.*(*(a+1)+2)