diff --git a/guide/english/c/dynamic-memory-management/index.md b/guide/english/c/dynamic-memory-management/index.md index 08854ef19f..d378476959 100644 --- a/guide/english/c/dynamic-memory-management/index.md +++ b/guide/english/c/dynamic-memory-management/index.md @@ -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.