运行下面程序的输出结果为( )
int main(void)
{
char s[20]="CLanguage.";
printf("%d,%d",sizeof(s),strlen(s));
}
10,11
10,10
20,10
10,20