2020-01-14第五周第二天

struct stu *head;

head=(struct stu *)malloc(sizeof(stu));

强制转化(float)a   把整型a转为float型

malloc内存中申请空间

head->number=1;

strcpy(head->name,“zhang”);

你可能感兴趣的:(2020-01-14第五周第二天)