单项选择题
根据以下定义,能输出字母M的语句是()。
struct person
{
char name[9];
int age;
};
struct person persons[10]={"Johu",17,"Paul",19,"Mary",18,"Adam",16};
A、printf("%c",persons[3].name);
B、printf("%c",persons[3].name[1]);
C、printf("%c",persons[2].name[1]);
D、printf("%c",persons[2].name[0]);