Free structure and the heap

前端 未结 3 1235
名媛妹妹
名媛妹妹 2021-01-27 11:44

If we have a structure that has pointers to malloced memory and then if we free that structure, is the memory referenced by that structure also freed? or do we have to free it m

3条回答
  •  执笔经年
    2021-01-27 12:02

    Its basically equals to number of malloc()s performed to allocate the memory. If you allocate memory dynamically using malloc() for both struct pointers fomResult & fomResult you should use separate two free() functions to free there memory along with freeing MResult.

提交回复
热议问题