填空题

以下程序的输出结果是______。
# include
main()
char a[]=’\1’,’\2’,’\3’,’\4’,’\0’;
printf("%d %d\n",sizeof(a),strlen(a));

【参考答案】

5,4