Fixing spelling errors (#27194)

This commit is contained in:
Meghan Westvig
2019-02-24 07:35:00 +02:00
committed by Randell Dawson
parent 7cfdacd1b4
commit 1ef8270608

View File

@ -3,7 +3,8 @@ title: Dynamic Memory Management
---
# Dynamic Memory Management
Sometimes you will need to allocate memory spaces in the heap also known as the dynamic memory. This is particulary useful when you do not know during compile time how large a data structure (like an array) will be.
Sometimes you will need to allocate memory spaces in the heap also known as the dynamic memory. This is particularly useful when you do not know during compile time how large a data structure (like an array) will be.
## An Example
Here's a simple example where we allocate an array, asking the user to choose the size.