Chapter 9: Problem 19
The __________ operator is used to dynamically allocate memory.
Short Answer
Expert verified
Answer: The operator used for dynamic memory allocation is the "new" operator. It requests a block of memory of the specified size on the heap during runtime. If successful, it returns a pointer to the allocated memory. Otherwise, it throws a "bad_alloc" exception if it fails to allocate the requested memory.