利用了指向数组的指针来完成,直接上代码了。
// 得到数组的最后一个数 - 使用指向数组的指针来完成#include <stdio.h>int main(){ printf(" 得到数组的最后一个数的趣味实现 \n"); printf(" - http://blog.csdn.net/morewindows/article/details/10022147 -\n"); printf(" -- By MoreWindows( http://blog.csdn.net/MoreWindows ) --\n\n"); const int MAXN = 8; int a[MAXN] = {1, 2, 4, 8, 16, 32, 64, 128}; int *p = (int*)(&a + 1); //&a 是一个指针,指向大小为4的数组 int(*)[MAXN] printf("%d\n", *(p - 1)); //为128 return 0;}
地址:http://blog.csdn.net/morewindows/article/details/10022147
转载请标明出处,谢谢。
欢迎关注微博:http://weibo.com/MoreWindows
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow