单项选择题
Given the following code, which one of the following statements can output the letter M
struct person
{
char name[9];
int age;
};
struct person class[10]={"Johu",17,"Paul",19,"Mary",18,"Adam",16};
A.printf("%c",class[3].name);
B.printf("%c",class[2].name[0]);
C.printf("%c",class[3].name[1]);
D.printf("%c",class[2].name[1]);