有以下程序
main()
{ int i,t[][3]={9,8,7,6,5,4,3,2,1};
for(i=0;i<3;i++) printf(" % d",t[2-i][i]);
}
程序执行后的输出结果是
A)7 5 3
B)3 5 7
C)3 6 9
D)7 5 1