概述
After the declaration and defination:
int a[] = {1, 2, 3, 4, 5 };
a + i equals i + a, they are pointers with the same value pointed to the array element a[i],
so a[i] = i[a],(0 <= i < 5)。
#include <stdio.h>
#include <stdlib.h>
int main(void){
int a[] = {1, 2, 3, 4, 5};
printf("After the declaration and defination int a[] = /{1, 2, 3, 4, 5/}/n");
printf("a[1] = %d/n", a[1]);
printf("1[a] = %d/n", 1[a]);
}
The output is :
After the declaration and defination int a[] = {1, 2, 3, 4, 5}
a[1] = 2
1[a] = 2
最后
以上就是搞怪菠萝为你收集整理的C语言数组特性-取下标运算中的交换律----i[a] == a[i]的全部内容,希望文章能够帮你解决C语言数组特性-取下标运算中的交换律----i[a] == a[i]所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复