执行下面代码,输出结果为 5 。 int main() { int a[2][3]; cout << &a[1][2] - &a[0][1] << endl; return 0; } 正确答案:错误(×)