单项选择题

根据下列的定义,能打印出字母P的语句是( )。
struct stu char name[10];
iht age;

struct stu s[10]="John",11,
"Paul", 12,
"Mary", 11,
"adam",12

A.printf("%c",s[3].name);
B.printf("%c",s[3].name[1]);
C.printf("%c",s[2].name[1]);
D.printf("%c",s[1].name[0]);