单项选择题

有以下程序:
matin()
char * s[]="one", "two", "three", *p;
p=s[1];
printf("% c, % s\n", *(p+1),s[o]);

执行后的输出结果是______。

A.n, two
B.t, one
C.w, one
D.o, two