Computer Science, asked by sreenikethvinod4332, 1 year ago

which one is used during memory deallocation in c? a) remove(p); b) delete(p); c) free(p); d) terminate(p)

Answers

Answered by webstar1
1
(c) free(p) is used during memory deallocation in c.

hope it helps u.
Answered by gayatrib136
0

c) free (p)


free () function is used to free or release the allocated memory

other functions like remove delete terminate are irrelevant to c

Similar questions