书山有路勤为径,学海无涯苦作舟!qiang.blog.chinaunix.net
dongliqiang1985
全部博文(262)
2012年(1)
2011年(168)
2010年(92)
2009年(1)
ai616818
crjwlaq
ARMzyp
2909157
jyhhappy
zhanglia
yuweixia
kylie201
doopney
cynthia
浪花小雨
格伯纳
Anthony_
飒沓沓沓
mude918
top04137
shouyu92
Hey_Ligh
分类: LINUX
2010-12-21 18:28:34
/* * test.c * * Created on: 2010-12-21 * Author: qiang */ #include <stdio.h> #include <stdlib.h> typedef struct{ char a; char b; int c; char d; }Test; int main() { Test *test; test = (Test*)malloc(sizeof(Test)); int len = sizeof(Test); printf("len test: %d \n",len); printf("a addr: %p \n",&(test->a)); printf("b addr: %p \n",&(test->b)); printf("c addr: %p \n",&(test->c)); printf("d addr: %p \n",&(test->d)); return 0; }
上一篇:内存分配详解、指针与数组[C++][内存管理]
下一篇:八大排序算法总结
登录 注册