which of the following operator creates dynamic memory:
Answers
Answered by
0
Answer:
Dynamic memory is allocated from the heap with the new operator, which returns the memory to the requesting program as a pointer. The new operator can allocate memory for any kind of data that a program needs, but it is rarely useful to dynamically create individual chars, ints, or doubles.
Similar questions