首页 > 代码库 > C语言结构体

C语言结构体

直接上代码

struct People{
int age;
}

int main(){
struct People * p= malloc(sizeof(struct Perople));

p->age=10;

struct People * p1=p;
p-age=12;
printf("%d\n",p1->age);
free(p);

return 0;
}


}

函数指针:

clipboard

 

typedef 关键字

clipboard[4]

 

可以省掉很多重复的声明