标签: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; }
查看汇编 可以看到汇编代码差不多
标签:mamicode 数组下标 char 下标 计算 com loading inf png
原文地址:https://www.cnblogs.com/feizianquan/p/14673668.html