单项选择题
若有定义语句:int k[2][3],* pk[3];,则以下语句中正确的是()。
A.pk=k; B.pk [0]=&k[1][2]; C.pk=k[0]; D.pk[1]=k;
A.int fun(double X,int *n); B.int fun(double ,int); C.int fun(double * X,int n); D.int fun(double *int*);
A.*(*W+3) B.*(*W+1)[4] C.*(*(*W+1)) D.*(*[0][0]+1)