填空题 以下程序的运行结果为______。
#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");


  • 1、
【正确答案】 1、b[0][0]=1 b[0][1]=2 b[0][2]=3    
【答案解析】