struct student{
int num;
char name[20];
float score;
};
struct student stu[40];//结构替中以赋值
struct student *p;
p=&stu;
p=p+10;
请问怎么释放10以后的内存啊??
谢谢