单项选择题

有以下程序
main ()
char p[]='a','b','c,q[] ="abc";
printf ( "%d %d\n" , sizeof (p) , sizeof (q));
程序运行后输出结果是

A.4 4
B.3 3
C.3 4
D.4 3