We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a8eb3 commit f096238Copy full SHA for f096238
modules/dynamic-allocation.md
@@ -1,9 +1,9 @@
1
# heap/dynamic allocation: malloc()/free()
2
3
The memory automatically allocated for local variables and function parameters
4
-is allocated in an area called a *stack*. There is an area called a *heap* to
5
-allocate memory that lasts after the function returns. That is also called
6
-a *dynamic allocation*.
+is allocated in an area called a *stack*. There is also an area called a *heap*
+to allocate memory that lasts after the function returns. That is also called a
+*dynamic allocation*.
7
8
The allocator in the standard C library offers the
9
`malloc`()/`calloc`()/`free`()/... APIs for heap allocation.
0 commit comments