File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -205,17 +205,17 @@ If you are new or know nothing about data structures and algorithms, I recommend
2052057 . Code, Process, Thread
2062068 . [ Stack memory vs Heap memory] ( https://www.gribblelab.org/CBootCamp/7_Memory_Stack_vs_Heap.html )
207207 * Stack memory
208- 1 . Stores temporary variable created by functions.
209- 2 . Memory is managed by CPU for you. No need to allocate and free it by hand.
210- 3 . L.I.F.O.
211- 4 . Stacks has limit (That is why we seldom use recursion real life)
212- 5 . Stacks variable are local variable in nature.
208+ * Stores temporary variable created by functions.
209+ * Memory is managed by CPU for you. No need to allocate and free it by hand.
210+ * L.I.F.O.
211+ * Stacks has limit (That is why we seldom use recursion real life)
212+ * Stacks variable are local variable in nature.
213213
214214 * Heap memory
215- 1 . Larger.
216- 2 . Slightly slower. Because we has to use "pointers" to access.
217- 3 . We are responsible to free() the memory.
218- 4 . Heap variable is global variable in nature.
215+ * Larger.
216+ * Slightly slower. Because we has to use "pointers" to access.
217+ * We are responsible to free() the memory.
218+ * Heap variable is global variable in nature.
2192199 . GET vs POST
22022010 . [ CORS] ( https://www.youtube.com/watch?v=eWEgUcHPle0 )
221221...
You can’t perform that action at this time.
0 commit comments