笔试面试 下面程序的输出是什么? int main(void) { int a[5] = {1, 2, 3, 4, 5}; int *ptr = (int *)(&a + 1); printf(“%d %d”, *(a + 1), *(ptr – 1)); return 0; }