c中怎么释放内存???
struct student{
int num;
char name[20];
float score;
};
struct student stu[40];//结构替中以赋值
struct student *p;
p=&stu;
p=p+10;
请问怎么释放10以后的内存啊??
struct student{
int num;
char name[20];
float score;
};
struct student stu[40];//结构替中以赋值
struct student *p;
p=&stu;
p=p+10;
请问怎么释放10以后的内存啊??
2006-12-14 21:58
2006-12-14 22:00
谢谢
2006-12-15 12:27