c++ 二维数组定义 二维数组首地址查询

2019-12-04 08:41:27来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

c++ 二维数组定义 二维数组首地址查询

#include <iostream>

using namespace std;

int main() {


    int arry[2][3] = {
        {2,3,5},
           {6,7,8}

    };

    cout << "二维数组大小 = "<< sizeof(arry)  << endl;
    cout << "二维数组一行大小 = " << sizeof(arry[0]) << endl;
    cout << "二维数组元素大小 = " << sizeof(arry[0][0]) << endl;

    cout << "二维数组行数 = " << sizeof(arry) / sizeof(arry[0]) << endl;
    cout << "二维数组列数 = " << sizeof(arry[0]) / sizeof(arry[0][0]) << endl;
    //cout << "hello world!" << endl;

    //地址
    cout << "二维数组首地址 = " << arry << endl;
    cout << "二维数组第一行地址 = " << arry[0] << endl;
    cout << "二维数组第二行地址 = " << arry[1] << endl;

    cout << "二维数组第一个元素地址 = " << &arry[0][0] << endl;
    cout << "二维数组第二个元素地址 = " << &arry[0][1] << endl;
    system("pause");
    return 0;
}






//===================================


#include <iostream>

using namespace std;


int main(){

int a = 0;

int arry[3][3] = {
{1,2,3},
{55,66,77},
{21,34,11}
};
cout << "输出地址 = " << &arry << endl;
cout << "二维数组第一行 = " << arry[0] << endl;
cout << "二位数组行数 =" << sizeof(arry) / sizeof(arry[0]) << endl;
cout << "二位数组列数 =" << sizeof(arry[0]) / sizeof(arry[0][0]) << endl;
cout << "二位数组占内存大小 =" << sizeof(arry) << endl;
cout << "二位数组一行占内存大小 =" << sizeof(arry[0]) << endl;
cout << "二位数组总共占内存大小 =" << sizeof(arry[0][0]) << endl;


return 0;

}




 


原文链接:https://www.cnblogs.com/trip-j/p/11974012.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【C++常用函数】头文件&lt;algorithm&gt;中的常用函数(绝对值,

下一篇:C++程序崩溃解决方案