【解决方案1】:

您的第一个 printf() 语句引用了一个数组 (arr[1]),因此它打印出数组的地址。

您的第二个 printf() 语句打印一个数组元素,但由于您没有在第一个 printf() 中包含结束行 ("\n"),它只是被添加到第一个 printf() 的末尾。

【讨论】: