struct stu *head;
head=(struct stu *)malloc(sizeof(stu));
强制转化(float)a 把整型a转为float型
malloc内存中申请空间
head->number=1;
strcpy(head->name,“zhang”);
struct stu *head;
head=(struct stu *)malloc(sizeof(stu));
强制转化(float)a 把整型a转为float型
malloc内存中申请空间
head->number=1;
strcpy(head->name,“zhang”);