单项选择题

有以下程序: main() { char a[7]="a0\0a0\0"; int i,j; i=sizeof(a); j=strlen(a); printf("%d %d\n",i,j); } 程序运行后的输出结果是______。

A.2 2
B.7 6
C.7 2
D.6 2