Skip to content

Commit baa9a9e

Browse files
Chris WuChris Wu
Chris Wu
authored and
Chris Wu
committed
no message
1 parent 63a19f1 commit baa9a9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,14 @@ If you are new or know nothing about data structures and algorithms, I recommend
204204
6. DNS, CNAME, NS, A, AAAA, IPv4, IPv6
205205
7. Code, Process, Thread
206206
8. [Stack memory vs Heap memory](https://www.gribblelab.org/CBootCamp/7_Memory_Stack_vs_Heap.html)
207-
Stack memory
207+
* Stack memory
208208
1. Stores temporary variable created by functions.
209209
2. Memory is managed by CPU for you. No need to allocate and free it by hand.
210210
3. L.I.F.O.
211211
4. Stacks has limit (That is why we seldom use recursion real life)
212212
5. Stacks variable are local variable in nature.
213213

214-
Heap memory
214+
* Heap memory
215215
1. Larger.
216216
2. Slightly slower. Because we has to use "pointers" to access.
217217
3. We are responsible to free() the memory.

0 commit comments

Comments
 (0)