预备知识
数据结构
指针
地址:内存单元的编号
指针就是地址,地址就是指针
2
3
Int * p
malloc函数
跨函数使用内存
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
#include<stdio.h> #include<malloc.h> struct student { int sid**; int age; }; struct student * greatstudent(void) { struct student * p =(struct student *)malloc(sizeof(struct student)); p->sid = 99; p->age = 88; return p; } void showstudent(struct student *pst) { printf(“%d %d\n**”,pst->age,pst->sid); } int main(void) { struct student * ps**; ps =greatstudent(); showstudent(ps); return 0; }** |
---|
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Zangyzhi!