Created
March 1, 2014 09:53
-
-
Save jasonlvhit/9287727 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#C数组下标的实现 | |
""" | |
其实一个例子就能说明,C中数组下标的实现方法。 | |
................ | |
int array[4]; | |
array[2] 和 2[array]是等价的。 | |
................ | |
2[array],这是个什么玩意儿。 | |
2[array]等价于: | |
*(2 + array) | |
array[2]等价于: | |
*(array + 2) | |
。。。。。。。。。。 | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment