设b是二维数组,哪么下面的表达式都是什么意思int(b)==(int)&b[0][0];int(b+1)==(int)(&b[0][0]+1);b+1==&b[0][0]+1;
true,false,false吧,具体意思去学二维指针和二维数组