单项选择题

执行以下的程序段后,m的值是______。 int a[2][3]={{1,2,3},{4,5,6}}; int m,*p; P=&a[0][0]; m=p[4];

A.4
B.5
C.3
D.不确定