单项选择题

有以下程序:
main()

char *S[]="one","two","three",*p;
p=s[1];
printf("%c,%s\n", *(p+1), s[0]);

执行后输出结果是( )。

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