C 数组下标计算

2021-06-03 14:01

阅读:799

标签:mamicode   数组下标   char   下标   计算   com   loading   inf   png   

int  main(int argc,char * argv[])
{
    int arry[] = { 1,2,3 };
    //大小下标计算 (int)arry+sizeof(int)*n
    arry[2] = 30;

    printf("%x", &arry[2]);
    printf("%x", (int)arry + sizeof(int)*2);

    printf("%x", &arry[argc]);
    printf("%x", (int)arry + sizeof(int)*argc);

    printf("%x", &arry[argc /3]);
    printf("%x", (int)arry + sizeof(int)*(argc /3));
    return 0;
}

查看汇编 可以看到汇编代码差不多

技术图片

 

 技术图片

 

 技术图片

 

C 数组下标计算

标签:mamicode   数组下标   char   下标   计算   com   loading   inf   png   

原文地址:https://www.cnblogs.com/feizianquan/p/14673668.html


评论


亲,登录后才可以留言!