以下程序段的运行结果是( )
#include<stdio.h>
void main(){
char p[]={'1','2','3'},q[]="123";
printf("%d,%d\n",sizeof(p),strlen(q));
}
4,4
3,3
3,4
4,3