技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2014-04-30 14:40:39
#include<stdio.h>#include<string.h>struct s1{char a;int c;char b;}s1_test[][2] = {{'j',123,'b'},{'o',52,'k'},{'k',21,'n'},{'p',19,'l'}};//为什么 struct s1 s1_test[][2] 和 struct s1 s1_test[4][2] 一样int main(){int a[2][2] = {1,2,3,4};struct s1 *p;printf("%d\n",a);printf(.........【阅读全文】
发布时间:2014-04-29 12:11:06
http://blog.csdn.net/collier/article/details/5865981假设有int a[];那么a实际上是数组a的首元素a[0]的首地址,而&a是数组的首地址,其值和&a[0]相等,但是两者的意义不同,这一点可以从指针的移动运算方面得到验证。且看下面程序:#include<stdio.h>int main(){  .........【阅读全文】