标签:长度 type typedef pre 数组 main col 元素 color
二级指针 指针的指针
1 typedef struct{
int age;
char name[20];
}Person;
int main(){
Person** p=(Person**)malloc(sizeof(Person*)*num);//定义一个存放Person结构体指针长度为num大小的数组,数组存放元素为指针
Person* per=(Person*)malloc(sizeof(Person));
p[0]=per;
}
标签:长度 type typedef pre 数组 main col 元素 color
原文地址:https://www.cnblogs.com/libing029/p/10425198.html