

MCQOPTIONS
Saved Bookmarks
1. |
Point out the correct statement which correctly free the memory pointed to by 's' and 'p' in the following program? |
A. | free(p); , free(p->s); |
B. | free(p->s); , free(p); |
C. | free(p->s); |
D. | free(p); |
Answer» C. free(p->s); | |