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