数据结构

指针

地址:内存单元的编号

指针就是地址,地址就是指针

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;
}**