单项选择题

以下程序的输出结果是()。
main()
int a[4][4]=1,3,5,2,4,6,3,5,7;
printf("%d%d%d%d\n",a[0][3],a[1][2],a[2][1],a[3][0]);

A. 0650
B. 1470
C. 5430
D. 输出值不定