下面的代码片段会在标准输出上打印出什么结果?
void main() { int arr[5] = {1,2,3,4,5}; printf("%d\n", *(arr+4)); }
1
2
4
5
无法确定