which one is used during memory deallocation in c? a) remove(p); b) delete(p); c) free(p); d) terminate(p)
Answers
Answered by
1
(c) free(p) is used during memory deallocation in c.
hope it helps u.
hope it helps u.
Answered by
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