p1 = p2 = (struct student *)malloc(sizeof(struct student)); 这个语句有什么作用? 我来答 可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。 malloc sizeof p1 p2 struct 搜索资料 1个回答 #合辑# 面试问优缺点怎么回答最加分? 匿名用户 推荐于2018-03-13 展开全部 新建一个student数据结构的对象,为其分配student结构所占用的内存空间。sizeof(struct student)为求该对象在内存中占用多少内存空间,让后用malloc函数分配同样大小的空间。将指针p1,p2指向该对象,即新分配出的空间。 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询 其他类似问题 2013-11-03 c语言这里的p1=p2=(struct student *)... 19 2012-06-02 head=p1=(struct stu *)malloc(s... 53 2014-12-02 (struct Student*)malloc(sizeof... 47 2011-03-10 C语言 链表中malloc 用处: 比如head=(stru... 46 2015-12-01 *pStudent=(struct student*)mal... 3 2014-02-04 pEnd=pNew=(struct Student*)mal... 72 2010-11-14 struct student* p = malloc(siz... 14 更多类似问题 > 为你推荐: