要使p指向二维整型数组a[10][20],p应定义为()。
A:int *p=a;
B:int **p=a;
C:int *p[20]=a;
D:int(*p)[20]=a;
出自:国家开放大学《C语言程序设计A》