问题详情
有以下程序main(){ char a[7]="a0 a0 "; int i,j; i=sizeof(a); j=strlen(a); printf("%d %d ",i,j);}程序运行后的输出结果是。A.2 2 B.7 6 C.7 2 D.6 2