动态内存问题
struct student{int number,maths,English,Chinese;
char name;
}s;
假设 要输入学生信息但又不给你多少个人 要利用动态内存输入
请问是怎么输入的?
使用链表...... malloc (s*)malloc(sizeof(s)) struct student *p;
p = (struct student *)malloc(len *sizeof(struct student));
//len可以手动输入要生成多少人的空间 谢谢 struct student* pv=(struct student*)malloc(sizeof(struct student));
pv->number=...
pv->....
....
struct 前面没有加typedef 不能起别名!!
等待问题答案过程中{:10_266:}
页:
[1]