Computer Science, asked by ashu0itkm, 2 months ago

dynamic memory where created???​

Answers

Answered by Sampurnakarpha
0

Answer:

Dynamic memory is created in an area of memory often referred to as the "free store", or the "heap". We can only allocate space during run time. We cannot create new variable names during run time -- all identifiers must be known by the compiler.

Answered by sanjana8350
0

Answer:

To dynamically allocate memory in C++, we use the new operator. To de-allocate dynamic memory, we use the delete operator. Dynamic memory is created in an area of memory often referred to as the "free store", or the "heap". We can only allocate space during run time.

The remainder of the dynamic storage area is commonly allocated to the heap, from which application programs may dynamically allocate memory, as required. In C, dynamic memory is allocated from the heap using some standard library functions. The two key dynamic memory functions are malloc() and free().

Explanation:

please like my answer

Similar questions