What is the output of the following code?int k,a[3][3]={3,2,3,3,5,6,7,3,9};for (k=0;k<3;k++)printf("%d",a[k][2-k]);
A、3 6 9;
B、3 5 9;
C、3 2 3;
D、3 5 7
发布时间:2025-07-09 22:26:51
A、3 6 9;
B、3 5 9;
C、3 2 3;
D、3 5 7