第29064题 单选题
如下C语言代码运行后的输出结果是?
#include <stdio.h>
int main() {
    int arr[2][3] = {{10, 20, 30}, {40, 50, 60}};
    printf("%d, %d\n", arr[0][2], *( *(arr+1)+2 ));
    return 0;
}
A

30, 50

B

30, 60

C

20, 50

D

20, 60

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析