

MCQOPTIONS
Saved Bookmarks
1. |
For the following program, Which of the following should be used for freeing the memory allocated? |
A. | free(p1); free(p1->next) |
B. | free(p1->next); free(p1); |
C. | free(p1); |
D. | all of the mentioned |
Answer» C. free(p1); | |