请分析以下C语言指令的运行结果: int a[5] = {1, 3, 5, 7, 9}; int *p = (int *)(&a + 1); printf("%d, %d", *(a + 1), *(p - 1));
3,9
运行时崩溃
3,1
2,1