File tree 1 file changed +9
-9
lines changed
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
205
205
7 . Code, Process, Thread
206
206
8 . [ Stack memory vs Heap memory] ( https://www.gribblelab.org/CBootCamp/7_Memory_Stack_vs_Heap.html )
207
207
* 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.
213
213
214
214
* 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.
219
219
9 . GET vs POST
220
220
10 . [ CORS] ( https://www.youtube.com/watch?v=eWEgUcHPle0 )
221
221
...
You can’t perform that action at this time.
0 commit comments