我有作业,我有一些问题
buch->title = malloc(MAX_STR* sizeof(char));
buch->author = malloc(MAX_STR* sizeof(char));
我如何释放这个分配的内存?
答案 0 :(得分:2)
释放所有记忆:
system("reboot");
答案 1 :(得分:0)
免费
free(buch->title)
free(buch->author)
顺便说一句,以后你也应该免费使用。
free(buch)
pd:如果您以后需要,可以用1-2D解释。 How do I free memory in C?