# include <iostream>using namespace std;int main(){ int b[3][3]={{1,2,3},{1,2,3}}; cout<<b[3][3]<<endl; return 0;}
c++中为什么下面的这个程序输出的是“3673664”?输出的这串数字代表什么...因为b[3][3]已经超出数组范围,会返回一个不确定的数。