65,211
社区成员
发帖
与我相关
我的任务
分享#include <iostream>
#include <iostream>
using namespace std;
int main()
{
int a[2][2] = {{1,2},{3,4}};
cout << a << endl;
cout << &a[0] << endl;
cout << &a[0][0] << endl;
system("pause");
return 0;
}