C++ 当我试图打印出我的数组时,我得到;0x7ffeedcf3a60“;作为我的输出

C++ 当我试图打印出我的数组时,我得到;0x7ffeedcf3a60“;作为我的输出,c++,C++,我不确定为什么会发生这种情况。任何帮助都将不胜感激 int M,N; int const ROW = 4; int const COLUMN = 3; int twoDimensional[4][3]; cout << "Welcome to the Matrix Calculator!" << endl; cout << endl; cout << "Please enter a " << ROW << "x" <

我不确定为什么会发生这种情况。任何帮助都将不胜感激

int M,N;
int const ROW = 4;
int const COLUMN = 3;
int twoDimensional[4][3];

cout << "Welcome to the Matrix Calculator!" << endl;
cout << endl;
cout << "Please enter a " << ROW << "x" << COLUMN << " matrix: " << endl;
cout << endl;
for (M = 0; M < 4; M++) {
    cout << endl;
    for (N = 0; N < 3; N++){
        cout << "Enter Row " << M + 1 << " Column " << N + 1 << ": ";
        cin >> twoDimensional[M][N];
    }
}
intm,N;
int const ROW=4;
int const COLUMN=3;
int二维[4][3];

你能告诉我你是如何输出数组的吗?注意,简单地做

cout<<twoDimensional;
cout
for (M = 0; M < 4; M++) {
    for (N = 0; N < 3; N++){
        cout << twoDimensional[M][N]<<" ";  
    }
    cout << endl;
}