InterviewSolution
Saved Bookmarks
| 1. |
Can I use ‘delete’ operator to release the memory which was allocated using malloc() function of C language? |
|
Answer» No, we need to use free() of C language for the same. |
|