Multiple choice

Which of the following operators is used in C++ to dynamically allocate memory space for a new node in the linked list?

  1. Delete

  2. Malloc

  3. Calloc

  4. Delete []

  5. New

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

This operator is used in C++ to dynamically allocate memory space for a new node in the linked list.