下面的代码段会在标准输出中打印出什么结果?
void main() { char arr[] = {'R', 'A', 'M', '\0'}; printf("%d", strlen(arr)); }
0
1
3
4
无法确定