问题 填空题

以下程序的运行结果为______。
#include <stdio.h>
main()
static int b[2][3]=1,2,3,4,5,6;
static int *pb[]=b[0],b[1];
int i,j;
i=0;
for (j=0;j<3;j++)
printf("b[%d][%d]=%d ",i,j,*(pb[i]+j));
printf("\n");

答案

参考答案:b[0][0]=1 b[0][1]=2 b[0][2]=3

选择题
多项选择题